1#ifndef RPG_PROPAGATOR_TPP
2#define RPG_PROPAGATOR_TPP
11#include "Propagator.h"
13#include <prdc/cuda/resources.h>
14#include <pscf/mesh/Mesh.h>
15#include <util/containers/DArray.h>
50 int meshSize = meshPtr_->
size();
51 qFieldsAll_.allocate(ns * meshSize);
54 qFields_.allocate(ns);
55 for (
int i = 0; i < ns; ++i) {
56 qFields_[i].associate(qFieldsAll_, i*meshSize, meshPtr_->dimensions());
72 qFields_.deallocate();
74 qFieldsAll_.deallocate();
77 int meshSize = meshPtr_->size();
78 qFieldsAll_.allocate(ns * meshSize);
81 qFields_.allocate(ns);
82 for (
int i = 0; i < ns; ++i) {
83 qFields_[i].associate(qFieldsAll_, i*meshSize, meshPtr_->dimensions());
96 int nx = meshPtr_->size();
103 tails[0] = &qFields_[0];
104 for (
int is = 0; is < nSource(); ++is) {
105 if (!source(is).isSolved()) {
106 UTIL_THROW(
"Source not solved in computeHead");
108 tails[is+1] = &(source(is).tail());
123 for (
int iStep = 0; iStep < ns_ - 1; ++iStep) {
124 block().step(qFields_[iStep], qFields_[iStep+1]);
140 for (
int iStep = 0; iStep < ns_ - 1; ++iStep) {
141 block().step(qFields_[iStep], qFields_[iStep+1]);
159 if (!partner().isSolved()) {
160 UTIL_THROW(
"Partner propagator is not solved");
166 int nx = meshPtr_->size();
Description of a regular grid of points in a periodic domain.
int size() const
Get total number of grid points.
Field of real double precision values on an FFT mesh.
void solve()
Solve the modified diffusion equation (MDE) for this block.
double computeQ()
Compute and return partition function for the molecule.
void allocate(int ns, const Mesh< D > &mesh)
Allocate propagator arrays.
void computeHead()
Compute initial QField at head from tail QFields of sources.
void reallocate(int ns)
Reallocate memory used by this propagator.
Dynamically allocatable contiguous array template.
void allocate(int capacity)
Allocate the underlying C array.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
cudaReal innerProduct(DeviceArray< cudaReal > const &a, DeviceArray< cudaReal > const &b)
Compute inner product of two real arrays (GPU kernel wrapper).
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 mulVMany(DeviceArray< cudaReal > &a, DArray< DeviceArray< cudaReal > > const &vecs)
Multiply an undefined number of vectors pointwise, kernel wrapper.
void eqS(DeviceArray< cudaReal > &a, cudaReal const b, const int beginIdA, const int n)
Vector assignment, a[i] = b, kernel wrapper (cudaReal).
PSCF package top-level namespace.
Utility classes for scientific computation.