PSCF v1.2
rpg/fts/montecarlo/McMove.h
1#ifndef RPG_MC_MOVE_H
2#define RPG_MC_MOVE_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
12#include <util/param/ParamComposite.h>
13#include <util/random/Random.h>
14#include <pscf/cuda/CudaRandom.h>
15#include <util/global.h>
16#include <util/misc/Timer.h>
17
18namespace Pscf {
19namespace Rpg
20{
21
22 using namespace Util;
23
24 template <int D> class System;
25 template <int D> class McSimulator;
26
36 template <int D>
37 class McMove : public ParamComposite
38 {
39
40 public:
41
47 McMove(McSimulator<D>& simulator);
48
54 virtual ~McMove();
55
61 virtual void readParameters(std::istream &in);
62
68 void setProbability(double probability);
69
79 virtual void setup();
80
103 virtual bool move();
104
109 virtual bool needsCc()
110 { return false; }
111
116 virtual bool needsDc()
117 { return false; }
118
122 virtual void outputTimers(std::ostream& out);
123
127 virtual void clearTimers();
128
129 // Accessor Functions
130
134 double probability() const;
135
139 long nAttempt() const;
140
144 long nAccept() const;
145
149 long nFail() const;
150
154 virtual void output();
155
156 protected:
157
161 void incrementNAttempt();
162
166 void incrementNAccept();
167
171 void incrementNFail();
172
176 System<D>& system();
177
182
186 Random& random();
187
192
196 void readProbability(std::istream& in);
197
208 virtual void attemptMove()
209 {};
210
213 Timer compressorTimer_;
214 Timer componentTimer_;
215 Timer hamiltonianTimer_;
216 Timer decisionTimer_;
217 Timer totalTimer_;
218
219 private:
220
222 McSimulator<D>* simulatorPtr_;
223
225 System<D>* systemPtr_;
226
228 Random *randomPtr_;
229
231 CudaRandom *cudaRandomPtr_;
232
234 double probability_;
235
237 long nAttempt_;
238
240 long nAccept_;
241
243 long nFail_;
244
245 };
246
247 // Public inline methods
248
249 /*
250 * Return number of moves that have been attempted.
251 */
252 template <int D>
253 inline long McMove<D>::nAttempt() const
254 { return nAttempt_; }
255
256 /*
257 * Return number of moves that have been accepted.
258 */
259 template <int D>
260 inline long McMove<D>::nAccept() const
261 { return nAccept_; }
262
263 /*
264 * Return number of moves that fail to converge.
265 */
266 template <int D>
267 inline long McMove<D>::nFail() const
268 { return nFail_; }
269
270 // Protected inline methods
271
272 /*
273 * Increment the number of attempted moves.
274 */
275 template <int D>
277 { ++nAttempt_; }
278
279 /*
280 * Increment the number of accepted moves.
281 */
282 template <int D>
284 { ++nAccept_; }
285
286 /*
287 * Increment the number of fail moves.
288 */
289 template <int D>
291 { ++nFail_; }
292
293 /*
294 * Get parent System object.
295 */
296 template <int D>
298 { return *systemPtr_; }
299
300 /*
301 * Get parent McSimulator object.
302 */
303 template <int D>
305 { return *simulatorPtr_; }
306
307 /*
308 * Get Random number generator.
309 */
310 template <int D>
312 { return *randomPtr_; }
313
314 /*
315 * Get CudaRandom number generator.
316 */
317 template <int D>
319 { return *cudaRandomPtr_; }
320
321 /*
322 * Get the probability.
323 */
324 template <int D>
325 inline double McMove<D>::probability() const
326 { return probability_; }
327
328 /*
329 * Set the probability.
330 */
331 template <int D>
332 inline void McMove<D>::setProbability(double probability)
333 { probability_ = probability; }
334
335 #ifndef RPG_MC_MOVE_TPP
336 // Suppress implicit instantiation
337 extern template class McMove<1>;
338 extern template class McMove<2>;
339 extern template class McMove<3>;
340 #endif
341
342}
343}
344#endif
Random number generator on GPU.
Definition CudaRandom.h:30
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.
Definition rpg/System.h:107
An object that can read multiple parameters from file.
Random number generator.
Definition Random.h:47
Wall clock timer.
Definition Timer.h:35
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.