-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdmc.hpp
More file actions
315 lines (236 loc) · 8.68 KB
/
dmc.hpp
File metadata and controls
315 lines (236 loc) · 8.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
#ifndef DMC_HPP
#define DMC_HPP
#include <iostream>
#include <array>
#include <utility>
#include <functional>
#include <cmath>
#include <cstdlib>
#include <algorithm>
#include <map>
#include <thread>
#include <fstream>
#include <sstream>
#include <random>
double gaussian( const double mean, const double stdDev ) {
/*Draws random numbers from a Gaussian distribution of given mean and standard deviation.*/
thread_local std::mt19937 engine( std::random_device{}() );
std::normal_distribution<double> dist( mean, stdDev );
return dist(engine);
}
double uniform( const double a, const double b ) {
/*Draws random numbers from a uniform distribution over the range [a,b].*/
thread_local std::mt19937 engine( std::random_device{}() );
std::uniform_real_distribution<double> dist( a, std::nextafter(b, std::numeric_limits<double>::max()) );
return dist(engine);
}
template< int maxN, int dp > //dp = d * num particles
std::pair< std::array<int, maxN>, std::array< std::array<double, dp>, maxN> > initialize( const int N0, std::array<double, dp> &x0 ) {
/*Initializes the array of flags and the array of points representing the ground state wave function
* distribution.*/
std::array<int, maxN> flags;
std::array<std::array<double, dp>, maxN> points;
for ( int i = 0; i < N0; ++i ) {
flags[i] = 1;
points[i] = x0;
}
for ( int i = N0; i < maxN; ++i ) {
flags[i] = 0;
points[i].fill(0.0);
}
return std::make_pair( flags, points );
}
template< int maxN, int dp >
void walk( const double timeStep, std::array<int, maxN> &flags, std::array< std::array<double, dp>, maxN> &points ) {
/*Propagates all points forward in time by one time step.*/
for ( int i = 0; i < maxN; ++i ) {
if ( flags[i] ) {
for ( int j = 0; j < dp; ++j ) {
points[i][j] += timeStep * gaussian(0.0, 1.0);
}
}
}
}
template< int dp >
int spawnNumber( std::array<double, dp> &x, const double E, const double u, double dt,
std::function<double (std::array<double, dp> &)> &V ) {
/*Determines the number of replicas of the given point to produce
* (or if the point should be removed).*/
return std::min( (int)std::floor(std::exp( (E - V(x))*dt ) + u), 3 );
}
template< int maxN, int dp >
int branch( const int N, const double dt, const double alpha, std::array<int, maxN> &flags,
std::array< std::array<double, dp>, maxN> &points, std::vector<double> &Es,
std::function<double (std::array<double, dp> &)> &V ) {
/*Replicates/removes points from the distribution as needed.*/
int nextN = N;
for (int i = 0; i < maxN; ++i ) {
if ( flags[i] == 1 ) {
int m = spawnNumber<dp>( points[i], Es.back(), uniform(0.0, 1.0), dt, V );
if ( m ) {
for (int j = 0; j < m - 1; ++j ) {
int newPoint = std::distance( flags.begin(), std::find(flags.begin(), flags.end(), 0) );
if ( newPoint < maxN ) {
points[newPoint] = points[i];
++nextN;
if ( newPoint < i ) {
flags[newPoint] = 1;
}
else {
flags[newPoint] = 2;
}
}
}
}
else {
flags[i] = 0;
--nextN;
}
}
else if ( flags[i] == 2 ){
flags[i] = 1;
}
}
Es.push_back( Es.back() + alpha*(1 - (1.0 * nextN)/N ) );
return nextN;
}
int bucketNumber( const int nb, const double a, const double b, const double x ) {
/*Returns the index of the bucket that x falls in given that the interval
* [a,b] is divided into nb + 1 buckets.*/
if ( x < a ) {
return 0;
}
else if ( x > b ) {
return nb;
}
else {
return std::floor( (x - a) * nb / (b - a) );
}
}
template< int maxN, int dp >
void count( const int nb, const double a, const double b, std::map< std::array<int, dp>, int> &counts,
std::array<int, maxN> &flags, std::array< std::array<double, dp>, maxN> &points ) {
/*Counts the number of points in each bucket, updates the current counts.*/
for ( int i = 0; i < maxN; ++i ) {
if ( flags[i] ) {
std::array<int, dp> key;
for ( int d = 0; d < dp; ++d ) {
key[d] = bucketNumber( nb, a, b, points[i][d] );
}
if ( counts.count(key) ) {
counts[key] += 1;
}
else {
counts[key] = 1;
}
}
}
}
template< int dp >
void writeWavefunction( const double a, const double b, const int nb,
std::map< std::array<int, dp>, int> &counts ) {
/*Prints the wave function to file. Each file is labeled by the thread ID.*/
const int code = system("mkdir -p wavefunction");
std::stringstream ss;
ss << "./wavefunction/wf-" << std::this_thread::get_id() << ".txt";
std::ofstream writeFile( ss.str().c_str() );
int total = 0;
double s = (b - a)/nb;
for ( auto &p : counts ) {
total += p.second;
}
for ( auto &p : counts ) {
for ( int i = 0; i < dp; ++i ) {
writeFile << a + p.first[i] * s << " ";
}
writeFile << (1.0*p.second)/total << "\n";
}
writeFile.close();
}
void writeEnergy( const std::vector<double> &Es ) {
/*Prints the history of the ground state energy to a file labeled by thread ID.*/
const int code = system("mkdir -p energy");
std::stringstream ss;
ss << "./energy/energy-" << std::this_thread::get_id() << ".txt";
std::ofstream writeFile( ss.str().c_str() );
for ( auto &E : Es ) {
writeFile << E << "\n";
}
writeFile.close();
}
template< int maxN, int dp >
void writeDistribution( const int pNum, std::array<int, maxN> &flags,
std::array< std::array<double, dp>, maxN> &points ) {
/*Prints the distribution of points to a file tagged with thread ID.*/
const int code = system("mkdir -p distros");
std::stringstream ss;
ss << "./distros/dist-" << std::this_thread::get_id() << ".txt";
std::ofstream writeFile( ss.str().c_str() );
int d = dp/pNum;
for ( int i = 0; i < maxN; ++i ) {
if ( flags[i] ) {
for ( int p = 0; p < pNum; ++p ) {
for ( int j = 0; j < d; ++j ) {
writeFile << points[i][ p * d + j ] << " ";
}
writeFile << "\n";
}
}
}
writeFile.close();
}
template< int maxN, int dp >
void diffusionMC( const int pNum, const int N0, const int nb, const double xmin, const double xmax,
const double timeStep, const double relaxTime, const double alpha,
std::array<double, dp> &x0, std::function<double (std::array<double, dp> &)> &V,
const bool printWF, const bool printDist ) {
/*Executes the main DMC loop.*/
if ( N0 > maxN ) {
std::cout << "Initial number of points must be less than maximum." << std::endl;
return;
}
if ( xmin >= xmax ) {
std::cout << "Invalid interval: xmin >= xmax." << std::endl;
return;
}
std::vector<double> Es = { V(x0) };
std::map< std::array<int, dp>, int> counts;
int currentN = N0;
double tau = 0;
double dt = std::sqrt( timeStep );
auto p = initialize<maxN, dp>( N0, x0 );
thread_local std::array<int, maxN> flags = p.first;
thread_local std::array< std::array<double, dp>, maxN> points = p.second;
while ( tau < 2 * relaxTime ) {
walk<maxN, dp>( dt, flags, points );
currentN = branch<maxN, dp>( currentN, timeStep, alpha, flags, points, Es, V );
if ( printWF and tau > relaxTime ) {
count<maxN, dp>( nb, xmin, xmax, counts, flags, points );
}
tau += timeStep;
}
writeEnergy(Es);
if ( printWF ) {
writeWavefunction<dp>( xmin, xmax, nb, counts );
}
if ( printDist ) {
writeDistribution<maxN, dp>( pNum, flags, points );
}
}
template< int maxN, int dp >
void runSimulation( const int pNum, const int N0, const int nb, const double xmin, const double xmax,
const double timeStep, const double relaxTime, const double alpha,
std::array<double, dp> &x0, std::function<double (std::array<double, dp> &)> &V,
const int numThreads = 1, const bool printWF = false, const bool printDist = false ) {
/*Simultaneously runs numThreads diffusion Monte Carlo simulations.*/
std::vector<std::thread> threads;
for ( int i = 0; i < numThreads; ++i ) {
auto f = std::bind( diffusionMC<maxN, dp>, pNum, N0, nb, xmin, xmax, timeStep, relaxTime, alpha,
x0, V, printWF, printDist );
threads.push_back( std::thread(f) );
}
for ( auto &t : threads ) {
t.join();
}
}
#endif