PSCF v1.2
rpg/fts/compressor/AmCompressor.h
1#ifndef RPG_AM_COMPRESSOR_H
2#define RPG_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/cuda/RField.h>
13#include <pscf/cuda/DeviceArray.h>
14#include <pscf/iterator/AmIteratorTmpl.h>
15
16#include <util/containers/DArray.h>
17
18namespace Pscf {
19namespace Rpg
20{
21
22 template <int D> class System;
23
24 using namespace Util;
25 using namespace Pscf::Prdc;
26 using namespace Pscf::Prdc::Cuda;
27
33 template <int D>
34 class AmCompressor : public AmIteratorTmpl<Compressor<D>,
35 DeviceArray<cudaReal> >
36 {
37
38 public:
39
45 AmCompressor(System<D>& system);
46
51
57 void readParameters(std::istream& in);
58
68 void setup(bool isContinuation);
69
70
76 int compress();
77
81 double computeLambda(double r);
82
86 int mdeCounter();
87
91 void outputTimers(std::ostream& out);
92
96 void clearTimers();
97
98 // Inherited public member functions
100 DeviceArray<cudaReal> >::setClassName;
101
102 protected:
103
104 // Inherited protected members
106 using Compressor<D>::system;
107 using Compressor<D>::mdeCounter_;
108
109 private:
113 int counter_;
114
118 DArray< RField<D> > w0_;
119
123 bool isAllocated_;
124
128 DArray< RField<D> > wFieldTmp_;
129
136 void setEqual(DeviceArray<cudaReal>& a,
137 DeviceArray<cudaReal> const & b);
138
142 double dotProduct(DeviceArray<cudaReal> const & a,
143 DeviceArray<cudaReal> const & b);
144
148 double maxAbs(DeviceArray<cudaReal> const & hist);
149
156 void updateBasis(RingBuffer<DeviceArray<cudaReal> > & basis,
157 RingBuffer<DeviceArray<cudaReal> > const & hists);
158
167 void addHistories(DeviceArray<cudaReal>& trial,
168 RingBuffer<DeviceArray<cudaReal> > const & basis,
169 DArray<double> coeffs,
170 int nHist);
171
179 void addPredictedError(DeviceArray<cudaReal>& fieldTrial,
180 DeviceArray<cudaReal> const & resTrial,
181 double lambda);
182
186 bool hasInitialGuess();
187
193 int nElements();
194
200 void getCurrent(DeviceArray<cudaReal>& curr);
201
208 void evaluate();
209
215 void getResidual(DeviceArray<cudaReal>& resid);
216
222 void update(DeviceArray<cudaReal>& newGuess);
223
227 void outputToLog();
228
229
230 };
231
232} // namespace Rpg
233} // namespace Pscf
234#endif
Template for Anderson mixing iterator algorithm.
Dynamic array on the GPU device with aligned data.
Definition rpg/System.h:32
Rpg implementation of the Anderson Mixing compressor.
int compress()
Compress to obtain partial saddle point w+.
int mdeCounter()
Return how many times MDE has been solved.
void outputTimers(std::ostream &out)
Return compressor times contributions.
AmCompressor(System< D > &system)
Constructor.
void setup(bool isContinuation)
Initialize just before entry to iterative loop.
double computeLambda(double r)
Compute mixing parameter lambda.
void clearTimers()
Clear all timers (reset accumulated time to zero).
void readParameters(std::istream &in)
Read all parameters and initialize.
Base class for iterators that impose incompressibility.
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.