12#include <util/param/ParamComposite.h>
13#include <util/random/Random.h>
14#include <pscf/cuda/CudaRandom.h>
16#include <util/misc/Timer.h>
24 template <
int D>
class System;
25 template <
int D>
class McSimulator;
213 Timer compressorTimer_;
214 Timer componentTimer_;
215 Timer hamiltonianTimer_;
216 Timer decisionTimer_;
254 {
return nAttempt_; }
298 {
return *systemPtr_; }
305 {
return *simulatorPtr_; }
312 {
return *randomPtr_; }
319 {
return *cudaRandomPtr_; }
326 {
return probability_; }
333 { probability_ = probability; }
335 #ifndef RPG_MC_MOVE_TPP
Random number generator on GPU.
McMove is an abstract base class for Monte Carlo moves.
CudaRandom & cudaRandom()
Get cuda random number generator by reference.
long nAttempt() const
Return number of moves that have been attempted.
virtual ~McMove()
Destructor.
void incrementNAttempt()
Increment the number of attempted moves.
Random & random()
Get Random number generator of parent System.
virtual void attemptMove()
Attempt unconstrained move.
double probability() const
Return probability for this McMove.
long nAccept() const
Return number of moves that have been accepted.
void setProbability(double probability)
Set the probability for this McMove.
virtual bool move()
Generate, attempt, and accept or reject a Monte Carlo move.
void readProbability(std::istream &in)
Read the probability from file.
virtual bool needsCc()
Decide whether cc fields need to be saved for move The default implementation is false.
McSimulator< D > & simulator()
Get parent McSimulator object.
virtual void readParameters(std::istream &in)
Read required parameters from file.
System< D > & system()
Get parent System object.
void incrementNAccept()
Increment the number of accepted moves.
void incrementNFail()
Increment the number of failed moves.
virtual void outputTimers(std::ostream &out)
Log output timing results.
virtual void setup()
Setup before the beginning of each simulation run.
McMove(McSimulator< D > &simulator)
Constructor.
long nFail() const
Return number of moves that fail to converge.
Timer attemptMoveTimer_
Timers for McMove.
virtual bool needsDc()
Decide whether dc fields need to be saved for move The default implementation is false.
virtual void clearTimers()
Clear timers.
virtual void output()
Output statistics for this move (at the end of simulation)
Monte-Carlo simulation coordinator.
Main class for calculations that represent one system.
An object that can read multiple parameters from file.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Utility classes for scientific computation.