PSCF v1.2
rpg/fts/compressor/LrAmCompressor.h
1#ifndef RPG_LR_POST_AM_COMPRESSOR_H
2#define RPG_LR_POST_AM_COMPRESSOR_H
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include "Compressor.h"
12#include <prdc/cpu/RField.h>
13#include <prdc/cpu/RFieldDft.h>
14#include <pscf/cuda/DeviceArray.h>
15#include <pscf/iterator/AmIteratorTmpl.h>
16#include <rpg/fts/compressor/intra/IntraCorrelation.h>
17
18namespace Pscf {
19namespace Rpg
20{
21
22 template <int D> class System;
23 template <int D> class IntraCorrelation;
24
25 using namespace Util;
26 using namespace Pscf::Prdc;
27 using namespace Pscf::Prdc::Cuda;
28
40 template <int D>
42 : public AmIteratorTmpl<Compressor<D>, DeviceArray<cudaReal> >
43 {
44
45 public:
46
53
58
64 void readParameters(std::istream& in);
65
75 void setup(bool isContinuation);
76
82 int compress();
83
87 void outputTimers(std::ostream& out);
88
92 void clearTimers();
93
94 // Inherited public member functions
96
97 protected:
98
99 // Inherited protected members
101 using Compressor<D>::mdeCounter_;
102
103 private:
104
108 int itr_;
109
113 DArray< RField<D> > w0_;
114
118 bool isAllocated_;
119
123 DArray< RField<D> > wFieldTmp_;
124
128 RField<D> resid_;
129
133 RFieldDft<D> residK_;
134
138 RField<D> intraCorrelationK_;
139
143 IntVec<D> kMeshDimensions_;
144
148 int kSize_;
149
156 void setEqual(DeviceArray<cudaReal>& a, DeviceArray<cudaReal> const & b);
157
161 double dotProduct(DeviceArray<cudaReal> const & a, DeviceArray<cudaReal> const & b);
162
166 double maxAbs(DeviceArray<cudaReal> const & hist);
167
174 void updateBasis(RingBuffer<DeviceArray<cudaReal> > & basis,
175 RingBuffer<DeviceArray<cudaReal> > const & hists);
176
185 void addHistories(DeviceArray<cudaReal>& trial,
186 RingBuffer<DeviceArray<cudaReal> > const & basis,
187 DArray<double> coeffs,
188 int nHist);
189
197 void addPredictedError(DeviceArray<cudaReal>& fieldTrial,
198 DeviceArray<cudaReal> const & resTrial,
199 double lambda);
200
204 bool hasInitialGuess();
205
211 int nElements();
212
218 void getCurrent(DeviceArray<cudaReal>& curr);
219
226 void evaluate();
227
233 void getResidual(DeviceArray<cudaReal>& resid);
234
240 void update(DeviceArray<cudaReal>& newGuess);
241
245 void outputToLog();
246
250 double computeLambda(double r);
251
255 IntraCorrelation<D> intraCorrelation_;
256
257 // Inherited private members
258 using Compressor<D>::system;
259
260 };
261
262 #ifndef RPG_LR_POST_AM_COMPRESSOR_TPP
263 // Suppress implicit instantiation
264 extern template class LrAmCompressor<1>;
265 extern template class LrAmCompressor<2>;
266 extern template class LrAmCompressor<3>;
267 #endif
268
269} // namespace Rpg
270} // namespace Pscf
271#endif
Template for Anderson mixing iterator algorithm.
Dynamic array on the GPU device with aligned data.
Definition rpg/System.h:32
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Fourier transform of a real field on an FFT mesh.
Field of real double precision values on an FFT mesh.
Base class for iterators that impose incompressibility.
Base class for iterators that impose incompressibility.
Anderson Mixing compressor with linear-response mixing step.
void readParameters(std::istream &in)
Read all parameters and initialize.
int compress()
Compress to obtain partial saddle point w+.
void clearTimers()
Clear all timers (reset accumulated time to zero).
void setup(bool isContinuation)
Initialize just before entry to iterative loop.
LrAmCompressor(System< D > &system)
Constructor.
void outputTimers(std::ostream &out)
Return compressor times contributions.
Main class for calculations that represent one system.
Definition rpg/System.h:107
Dynamically allocatable contiguous array template.
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
Class for storing history of previous values in an array.
Definition RingBuffer.h:27
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.