forked from deepmodeling/abacus-develop
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdiago_lcao_test.cpp
More file actions
401 lines (360 loc) · 12.9 KB
/
diago_lcao_test.cpp
File metadata and controls
401 lines (360 loc) · 12.9 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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
#include "source_hsolver/diago_scalapack.h"
#include "source_hsolver/diago_lapack.h"
#include "source_hsolver/test/diago_elpa_utils.h"
#define private public
#include "source_io/module_parameter/parameter.h"
#undef private
#include "mpi.h"
#include "string.h"
#include "gtest/gtest.h"
#include <vector>
#ifdef __ELPA
#include "source_hsolver/diago_elpa.h"
#endif
#include "source_base/module_external/scalapack_connector.h"
#define PASSTHRESHOLD 1e-10
#define DETAILINFO false
#define PRINT_HS false
#define REPEATRUN 1
/************************************************
* unit test of LCAO diagonalization
***********************************************/
/**
* Tested function:
* - hsolver::DiagoElpa::diag (for ELPA)
* - hsolver::DiagoScalapack::diag (for Scalapack)
*
* The 2d block cyclic distribution of H/S matrix is done by
* self-realized functions in source_hsolver/test/diago_elpa_utils.h
*/
template <typename T>
class HamiltTEST : public hamilt::Hamilt<T>
{
public:
int desc[9];
int nrow, ncol;
std::vector<T> h_local;
std::vector<T> s_local;
void matrix(hamilt::MatrixBlock<T>& hk_in, hamilt::MatrixBlock<T>& sk_in)
{
hk_in = hamilt::MatrixBlock<T>{this->h_local.data(), (size_t)this->nrow, (size_t)this->ncol, this->desc};
sk_in = hamilt::MatrixBlock<T>{this->s_local.data(), (size_t)this->nrow, (size_t)this->ncol, this->desc};
}
void constructHamilt(const int iter, const hamilt::MatrixBlock<double> rho)
{
}
void updateHk(const int ik)
{
}
};
template <class T>
class DiagoPrepare
{
public:
DiagoPrepare(int nlocal,
int nbands,
int nb2d,
int sparsity,
std::string ks_solver,
std::string hfname,
std::string sfname)
: nlocal(nlocal), nbands(nbands), nb2d(nb2d), sparsity(sparsity), ks_solver(ks_solver), hfname(hfname),
sfname(sfname)
{
MPI_Comm_size(MPI_COMM_WORLD, &dsize);
MPI_Comm_rank(MPI_COMM_WORLD, &myrank);
if (ks_solver == "scalapack_gvx")
;
// dh = new hsolver::DiagoScalapack<T>;
else if (ks_solver == "lapack")
;
#ifdef __ELPA
else if (ks_solver == "genelpa")
;
// dh = new hsolver::DiagoElpa<T>;
#endif
else
{
if (myrank == 0)
std::cout << "ERROR: undefined ks_solver: " << ks_solver << std::endl;
exit(1);
}
}
int dsize, myrank;
int nlocal, nbands, nb2d, sparsity;
double hsolver_time = 0.0, lapack_time = 0.0;
std::string ks_solver, sfname, hfname;
HamiltTEST<T> hmtest;
std::vector<T> h;
std::vector<T> s;
std::vector<T> h_local;
std::vector<T> s_local;
psi::Psi<T> psi;
std::vector<double> e_solver;
std::vector<double> e_lapack;
std::vector<double> abc;
int icontxt;
bool read_HS()
{
bool readhfile = false;
bool readsfile = false;
if (this->myrank == 0)
{
int hdim, sdim;
readhfile = LCAO_DIAGO_TEST::read_hs<std::vector<T>>(hfname, this->h);
readsfile = LCAO_DIAGO_TEST::read_hs<std::vector<T>>(sfname, this->s);
hdim = sqrt(this->h.size());
sdim = sqrt(this->s.size());
if (hdim != sdim)
{
printf("Error: dimensions of H and S are not equal, %d, %d\n", hdim, sdim);
readhfile = readsfile = false;
}
nlocal = hdim;
}
MPI_Bcast(&nlocal, 1, MPI_INT, 0, MPI_COMM_WORLD);
MPI_Bcast(&readhfile, 1, MPI_C_BOOL, 0, MPI_COMM_WORLD);
MPI_Bcast(&readsfile, 1, MPI_C_BOOL, 0, MPI_COMM_WORLD);
nbands = nlocal / 2;
if (readhfile && readsfile)
return true;
return false;
}
bool produce_HS()
{
bool ok = this->read_HS();
e_solver.resize(nlocal, 0.0);
e_lapack.resize(nlocal, 1.0);
return ok;
}
void print_hs()
{
if (!PRINT_HS)
return;
if (myrank == 0)
{
std::ofstream fp("hmatrix.dat");
LCAO_DIAGO_TEST::print_matrix(fp, this->h.data(), nlocal, nlocal, true);
fp.close();
fp.open("smatrix.dat");
LCAO_DIAGO_TEST::print_matrix(fp, this->s.data(), nlocal, nlocal, true);
fp.close();
}
}
void pb2d()
{
int nprows, npcols, myprow, mypcol;
LCAO_DIAGO_TEST::process_2d(nprows, npcols, myprow, mypcol, icontxt);
hmtest.nrow = LCAO_DIAGO_TEST::na_rc(nlocal,
nb2d,
nprows,
myprow); // the number of row of the new_matrix in each process
hmtest.ncol = LCAO_DIAGO_TEST::na_rc(nlocal,
nb2d,
npcols,
mypcol); // the number of column of the new_matrix in each process
int ISRC = 0, info;
descinit_(hmtest.desc, &nlocal, &nlocal, &nb2d, &nb2d, &ISRC, &ISRC, &icontxt, &(hmtest.nrow), &info);
if (info != 0)
{
printf("Invalid blacs-distribution. Abort!\n");
exit(1);
}
}
void distribute_data()
{
int local_size = hmtest.nrow * hmtest.ncol;
this->h_local.resize(local_size);
this->s_local.resize(local_size);
LCAO_DIAGO_TEST::distribute_data<T>(this->h.data(),
this->h_local.data(),
nlocal,
nb2d,
hmtest.nrow,
hmtest.ncol,
icontxt);
LCAO_DIAGO_TEST::distribute_data<T>(this->s.data(),
this->s_local.data(),
nlocal,
nb2d,
hmtest.nrow,
hmtest.ncol,
icontxt);
psi.resize(1, hmtest.ncol, hmtest.nrow);
}
void set_env()
{
PARAM.sys.nlocal = nlocal;
PARAM.input.nbands = nbands;
GlobalV::DSIZE = dsize;
}
void diago()
{
this->pb2d();
this->distribute_data();
this->print_hs();
this->set_env();
double starttime = 0.0, endtime = 0.0;
MPI_Barrier(MPI_COMM_WORLD);
starttime = MPI_Wtime();
for (int i = 0; i < REPEATRUN; i++)
{
hmtest.h_local = this->h_local;
hmtest.s_local = this->s_local;
if (ks_solver == "scalapack_gvx")
{
hsolver::DiagoScalapack<T> dh;
dh.diag(&hmtest, psi, e_solver.data());
}
else if (ks_solver == "lapack")
{
hsolver::DiagoLapack<T> la;
la.diag(&hmtest, psi, e_solver.data());
}
#ifdef __ELPA
else if (ks_solver == "genelpa")
{
hsolver::DiagoElpa<T> dh;
dh.diag(&hmtest, psi, e_solver.data());
}
#endif
// dh.diag(&hmtest, psi, e_solver.data());
}
endtime = MPI_Wtime();
hsolver_time = (endtime - starttime) / REPEATRUN;
// delete dh;
}
void diago_lapack()
{
double starttime = 0.0, endtime = 0.0;
starttime = MPI_Wtime();
for (int i = 0; i < REPEATRUN; i++)
LCAO_DIAGO_TEST::lapack_diago(this->h.data(), this->s.data(), this->e_lapack.data(), nlocal);
endtime = MPI_Wtime();
lapack_time = (endtime - starttime) / REPEATRUN;
}
bool compare_eigen(std::stringstream& out_info)
{
double maxerror = 0.0;
int iindex = 0;
bool pass = true;
for (int i = 0; i < nbands; i++)
{
// EXPECT_NEAR(e_lapack[i], e_solver[i], PASSTHRESHOLD);
double error = std::abs(e_lapack[i] - e_solver[i]);
if (error > maxerror)
{
maxerror = error;
iindex = i;
}
if (error > PASSTHRESHOLD)
pass = false;
}
std::cout << "H/S matrix are read from " << hfname << ", " << sfname << std::endl;
std::cout << "solver=" << ks_solver << ", NLOCAL=" << nlocal << ", nbands=" << nbands << ", nb2d=" << nb2d;
std::cout << std::endl;
out_info << "solver time: " << hsolver_time << "s, LAPACK time(1 core):" << lapack_time << "s" << std::endl;
out_info << "Maximum difference between ks_hsolver and LAPACK is " << maxerror << " (" << iindex
<< "-th eigenvalue), the pass threshold is " << PASSTHRESHOLD << std::endl;
if (DETAILINFO)
{
std::cout << out_info.str();
out_info.str("");
out_info.clear();
}
return pass;
}
};
class DiagoGammaOnlyTest : public ::testing::TestWithParam<DiagoPrepare<double>>
{
};
TEST_P(DiagoGammaOnlyTest, LCAO)
{
std::stringstream out_info;
DiagoPrepare<double> dp = GetParam();
ASSERT_TRUE(dp.produce_HS());
// Skip lapack tests in multi-process environment
// LAPACK is a serial solver and cannot work with distributed matrices
if (dp.ks_solver == "lapack" && dp.dsize > 1)
{
GTEST_SKIP() << "Skipping lapack test with " << dp.dsize
<< " MPI processes (lapack only supports single process)";
}
dp.diago();
if (dp.myrank == 0)
{
dp.diago_lapack();
bool pass = dp.compare_eigen(out_info);
EXPECT_TRUE(pass) << out_info.str();
}
MPI_Barrier(MPI_COMM_WORLD);
}
INSTANTIATE_TEST_SUITE_P(
DiagoTest,
DiagoGammaOnlyTest,
::testing::Values( // int nlocal, int nbands, int nb2d, int sparsity, std::string ks_solver_in, std::string hfname,
// std::string sfname DiagoPrepare<double>(0, 0, 1, 0, "genelpa", "H-GammaOnly-Si2.dat",
// "S-GammaOnly-Si2.dat")
#ifdef __ELPA
DiagoPrepare<double>(0, 0, 32, 0, "genelpa", "H-GammaOnly-Si64.dat", "S-GammaOnly-Si64.dat"),
#endif
DiagoPrepare<double>(0, 0, 1, 0, "scalapack_gvx", "H-GammaOnly-Si2.dat", "S-GammaOnly-Si2.dat"),
DiagoPrepare<double>(0, 0, 32, 0, "scalapack_gvx", "H-GammaOnly-Si64.dat", "S-GammaOnly-Si64.dat"),
DiagoPrepare<double>(0, 0, 1, 0, "lapack", "H-GammaOnly-Si2.dat", "S-GammaOnly-Si2.dat"),
DiagoPrepare<double>(0, 0, 32, 0, "lapack", "H-GammaOnly-Si64.dat", "S-GammaOnly-Si64.dat")));
class DiagoKPointsTest : public ::testing::TestWithParam<DiagoPrepare<std::complex<double>>>
{
};
TEST_P(DiagoKPointsTest, LCAO)
{
std::stringstream out_info;
DiagoPrepare<std::complex<double>> dp = GetParam();
ASSERT_TRUE(dp.produce_HS());
// Skip lapack tests in multi-process environment
// LAPACK is a serial solver and cannot work with distributed matrices
if (dp.ks_solver == "lapack" && dp.dsize > 1)
{
GTEST_SKIP() << "Skipping lapack test with " << dp.dsize
<< " MPI processes (lapack only supports single process)";
}
dp.diago();
if (dp.myrank == 0)
{
dp.diago_lapack();
bool pass = dp.compare_eigen(out_info);
EXPECT_TRUE(pass) << out_info.str();
}
MPI_Barrier(MPI_COMM_WORLD);
}
INSTANTIATE_TEST_SUITE_P(
DiagoTest,
DiagoKPointsTest,
::testing::Values( // int nlocal, int nbands, int nb2d, int sparsity, std::string ks_solver_in, std::string hfname,
// std::string sfname DiagoPrepare<std::complex<double>>(800, 400, 32, 7, "genelpa", "", ""),
#ifdef __ELPA
DiagoPrepare<std::complex<double>>(0, 0, 1, 0, "genelpa", "H-KPoints-Si2.dat", "S-KPoints-Si2.dat"),
#endif
// DiagoPrepare<std::complex<double>>(0, 0, 32, 0, "genelpa", "H-KPoints-Si64.dat", "S-KPoints-Si64.dat"),
DiagoPrepare<std::complex<double>>(0, 0, 1, 0, "scalapack_gvx", "H-KPoints-Si2.dat", "S-KPoints-Si2.dat"),
DiagoPrepare<std::complex<double>>(0, 0, 32, 0, "scalapack_gvx", "H-KPoints-Si64.dat", "S-KPoints-Si64.dat")));
int main(int argc, char** argv)
{
MPI_Init(&argc, &argv);
int mypnum, dsize;
MPI_Comm_size(MPI_COMM_WORLD, &dsize);
MPI_Comm_rank(MPI_COMM_WORLD, &mypnum);
testing::InitGoogleTest(&argc, argv);
::testing::TestEventListeners& listeners = ::testing::UnitTest::GetInstance()->listeners();
if (mypnum != 0)
{
delete listeners.Release(listeners.default_result_printer());
}
int result = RUN_ALL_TESTS();
if (mypnum == 0 && result != 0)
{
std::cout << "ERROR:some tests are not passed" << std::endl;
return result;
}
MPI_Finalize();
return 0;
}