1#ifndef RPG_AM_COMPRESSOR_TPP
2#define RPG_AM_COMPRESSOR_TPP
11#include "AmCompressor.h"
12#include <rpg/System.h>
13#include <prdc/cuda/RField.h>
14#include <prdc/cuda/resources.h>
15#include <pscf/math/IntVec.h>
28 { setClassName(
"AmCompressor"); }
51 const int nMonomer = system().mixture().nMonomer();
52 const int meshSize = system().domain().mesh().size();
53 const IntVec<D> dimensions = system().domain().mesh().dimensions();
61 w0_.allocate(nMonomer);
62 wFieldTmp_.allocate(nMonomer);
63 for (
int i = 0; i < nMonomer; ++i) {
64 w0_[i].allocate(dimensions);
65 wFieldTmp_[i].allocate(dimensions);
71 for (
int i = 0; i < nMonomer; ++i) {
105 double AmCompressor<D>::maxAbs(DeviceArray<cudaReal>
const & a)
113 AmCompressor<D>::updateBasis(
RingBuffer< DeviceArray<cudaReal> > & basis,
114 RingBuffer< DeviceArray<cudaReal> >
const & hists)
120 if (basis[0].isAllocated()) {
121 UTIL_CHECK(basis[0].capacity() == hists[0].capacity());
123 basis[0].allocate(hists[0].capacity());
131 AmCompressor<D>::addHistories(DeviceArray<cudaReal>& trial,
132 RingBuffer<DeviceArray<cudaReal> >
const & basis,
136 for (
int i = 0; i < nHist; i++) {
142 void AmCompressor<D>::addPredictedError(DeviceArray<cudaReal>& fieldTrial,
143 DeviceArray<cudaReal>
const & resTrial,
151 bool AmCompressor<D>::hasInitialGuess()
152 {
return system().w().hasData(); }
156 int AmCompressor<D>::nElements()
157 {
return system().domain().mesh().size(); }
161 void AmCompressor<D>::getCurrent(DeviceArray<cudaReal>& curr)
174 void AmCompressor<D>::evaluate()
182 void AmCompressor<D>::getResidual(DeviceArray<cudaReal>& resid)
184 const int nMonomer = system().mixture().nMonomer();
190 for (
int i = 1; i < nMonomer; i++) {
197 void AmCompressor<D>::update(DeviceArray<cudaReal>& newGuess)
200 const int nMonomer = system().mixture().nMonomer();
203 for (
int i = 0; i < nMonomer; i++) {
208 system().setWRGrid(wFieldTmp_);
226 out <<
"Compressor times contributions:\n";
Template for Anderson mixing iterator algorithm.
Dynamic array on the GPU device with aligned data.
int capacity() const
Return allocated capacity.
An IntVec<D, T> is a D-component vector of elements of integer type T.
Rpg implementation of the Anderson Mixing compressor.
int compress()
Compress to obtain partial saddle point w+.
void outputTimers(std::ostream &out)
Return compressor times contributions.
AmCompressor(System< D > &system)
Constructor.
~AmCompressor()
Destructor.
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.
Dynamically allocatable contiguous array template.
Class for storing history of previous values in an array.
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
cudaReal innerProduct(DeviceArray< cudaReal > const &a, DeviceArray< cudaReal > const &b)
Compute inner product of two real arrays (GPU kernel wrapper).
cudaReal maxAbs(DeviceArray< cudaReal > const &in)
Get maximum absolute magnitude of array elements (GPU kernel wrapper).
void addEqV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, const int beginIdA, const int beginIdB, const int n)
Vector addition in-place, a[i] += b[i], kernel wrapper (cudaReal).
void eqV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, const int beginIdA, const int beginIdB, const int n)
Vector assignment, a[i] = b[i], kernel wrapper (cudaReal).
void subVS(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, cudaReal const c, const int beginIdA, const int beginIdB, const int n)
Vector subtraction, a[i] = b[i] - c, kernel wrapper (cudaReal).
void addVV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, DeviceArray< cudaReal > const &c, const int beginIdA, const int beginIdB, const int beginIdC, const int n)
Vector addition, a[i] = b[i] + c[i], kernel wrapper (cudaReal).
void subVV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, DeviceArray< cudaReal > const &c, const int beginIdA, const int beginIdB, const int beginIdC, const int n)
Vector subtraction, a[i] = b[i] - c[i], kernel wrapper (cudaReal).
void addEqVc(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, cudaReal const c)
Vector addition in-place w/ coefficient, a[i] += b[i] * c, kernel wrapper.
PSCF package top-level namespace.
Utility classes for scientific computation.