1#ifndef RPG_REAL_MOVE_TPP
2#define RPG_REAL_MOVE_TPP
13#include <rpg/fts/VecOpFts.h>
14#include <prdc/cuda/VecOp.h>
15#include <pscf/math/IntVec.h>
16#include <util/param/ParamComposite.h>
17#include <rpg/System.h>
49 read(in,
"A", stepSize_);
57 const int nMonomer = system().mixture().nMonomer();
58 const IntVec<D> dimensions = system().domain().mesh().dimensions();
60 wFieldTmp_.allocate(nMonomer);
61 randomField_.allocate(dimensions);
62 for (
int i = 0; i < nMonomer; ++i) {
63 wFieldTmp_[i].allocate(dimensions);
75 const int nMonomer = system().mixture().nMonomer();
76 const int meshSize = system().domain().mesh().size();
79 for (
int i = 0; i < nMonomer; i++){
82 cudaRandom().uniform(randomField_);
88 VecOp::addVV(wFieldTmp_[i], system().w().rgrid(i), randomField_);
93 system().setWRGrid(wFieldTmp_);
109 out <<
"RealMove time contributions:\n";
An IntVec<D, T> is a D-component vector of elements of integer type T.
McMove is an abstract base class for Monte Carlo moves.
virtual void outputTimers(std::ostream &out)
Log output timing results.
virtual void setup()
Setup before the beginning of each simulation run.
Monte-Carlo simulation coordinator.
void readParameters(std::istream &in)
Read required parameters from file.
void setClassName(const char *className)
Set class name string.
void attemptMove()
Attempt unconstrained move.
RealMove(McSimulator< D > &simulator)
Constructor.
void setup()
Setup before the beginning of each simulation run.
void outputTimers(std::ostream &out)
Return real move times contributions.
void output()
Output statistics for this move (at the end of simulation)
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 mcftsScale(DeviceArray< cudaReal > &a, cudaReal const b)
Rescale array a from [0,1] to [-b, b], GPU kernel wrapper.
PSCF package top-level namespace.
Utility classes for scientific computation.