Skip to content

Commit 472b0fb

Browse files
authored
Merge pull request QMCPACK#3224 from ye-luo/faster-build
Split template class header file to help parallel build
2 parents d87968c + e771afe commit 472b0fb

22 files changed

+1273
-1071
lines changed

src/Numerics/OneDimGridFunctor.h

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#ifndef QMCPLUSPLUS_GRID_FUNCTOR_H
1717
#define QMCPLUSPLUS_GRID_FUNCTOR_H
1818

19+
#include <memory>
1920
#include "Numerics/OneDimGridBase.h"
2021
#include "Optimize/VarList.h"
2122

src/Numerics/codegen/SoaCartesianTensor.h.in

+4-7
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#ifndef QMCPLUSPLUS_SOA_CARTESIAN_TENSOR_H
1818
#define QMCPLUSPLUS_SOA_CARTESIAN_TENSOR_H
1919

20+
#include <stdexcept>
2021
#include "OhmmsSoA/VectorSoaContainer.h"
2122

2223
namespace qmcplusplus
@@ -120,10 +121,8 @@ template<class T>
120121
SoaCartesianTensor<T>::SoaCartesianTensor(const int l_max, bool addsign) : Lmax(l_max)
121122
{
122123
if(Lmax < 0 || Lmax > 6)
123-
{
124-
std::cerr <<"CartesianTensor can't handle Lmax > 6 or Lmax < 0.\n";
125-
APP_ABORT("");
126-
}
124+
throw std::runtime_error("CartesianTensor can't handle Lmax > 6 or Lmax < 0.\n");
125+
127126
int ntot = 0;
128127
for(int i=0; i<=Lmax; i++)
129128
ntot+=(i+1)*(i+2)/2;
@@ -428,12 +427,10 @@ void SoaCartesianTensor<T>::getABC(int n, int& a, int& b, int& c)
428427
break;
429428

430429
default:
431-
std::cerr <<"CartesianTensor::getABC() - Incorrect index." << std::endl;
432-
APP_ABORT("");
430+
throw std::runtime_error("CartesianTensor::getABC() - Incorrect index.\n");
433431
break;
434432
}
435433
}
436434

437-
438435
} //namespace qmcplusplus
439436
#endif
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
//////////////////////////////////////////////////////////////////////////////////////
2+
// This file is distributed under the University of Illinois/NCSA Open Source License.
3+
// See LICENSE file in top directory for details.
4+
//
5+
// Copyright (c) 2021 QMCPACK developers.
6+
//
7+
// File developed by: Ye Luo, [email protected], Argonne National Laboratory
8+
//
9+
// File created by: Ye Luo, [email protected], Argonne National Laboratory
10+
//////////////////////////////////////////////////////////////////////////////////////
11+
12+
13+
#include "HybridRepCenterOrbitals.h"
14+
15+
namespace qmcplusplus
16+
{
17+
template class AtomicOrbitals<float>;
18+
template class AtomicOrbitals<double>;
19+
template class HybridRepCenterOrbitals<float>;
20+
template class HybridRepCenterOrbitals<double>;
21+
} // namespace qmcplusplus

src/QMCWaveFunctions/BsplineFactory/HybridRepCenterOrbitals.h

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@
1818
#define QMCPLUSPLUS_HYBRIDREP_CENTER_ORBITALS_H
1919

2020
#include "Particle/DistanceTableData.h"
21+
#include "Particle/VirtualParticleSet.h"
2122
#include "QMCWaveFunctions/LCAO/SoaSphericalTensor.h"
2223
#include "spline2/MultiBspline1D.hpp"
2324
#include "Numerics/SmoothFunctions.hpp"
25+
#include "hdf/hdf_archive.h"
2426

2527
namespace qmcplusplus
2628
{
@@ -138,7 +140,7 @@ class AtomicOrbitals
138140
bool read_splines(hdf_archive& h5f)
139141
{
140142
einspline_engine<AtomicSplineType> bigtable(SplineInst->getSplinePtr());
141-
int lmax_in, spline_npoints_in;
143+
int lmax_in = 0, spline_npoints_in = 0;
142144
ST spline_radius_in;
143145
if (!h5f.readEntry(lmax_in, "l_max") || lmax_in != lmax)
144146
return false;
@@ -709,5 +711,9 @@ class HybridRepCenterOrbitals
709711
friend class HybridRepSetReader;
710712
};
711713

714+
extern template class AtomicOrbitals<float>;
715+
extern template class AtomicOrbitals<double>;
716+
extern template class HybridRepCenterOrbitals<float>;
717+
extern template class HybridRepCenterOrbitals<double>;
712718
} // namespace qmcplusplus
713719
#endif

src/QMCWaveFunctions/CMakeLists.txt

+9-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,14 @@ IF(OHMMS_DIM MATCHES 3)
8686
Jastrow/CountingJastrowBuilder.cpp
8787
)
8888

89-
SET(FERMION_SRCS ${FERMION_SRCS} LCAO/LCAOrbitalSet.cpp LCAO/LCAOrbitalBuilder.cpp)
89+
SET(FERMION_SRCS ${FERMION_SRCS}
90+
LCAO/LCAOrbitalSet.cpp
91+
LCAO/LCAOrbitalBuilder.cpp
92+
LCAO/SoaSphericalTensor.cpp
93+
LCAO/MultiQuinticSpline1D.cpp
94+
LCAO/AOBasisBuilder.cpp
95+
LCAO/SoaLocalizedBasisSet.cpp
96+
)
9097
IF(QMC_COMPLEX)
9198
SET(FERMION_SRCS ${FERMION_SRCS} LCAO/LCAOSpinorBuilder.cpp)
9299
ELSE(QMC_COMPLEX)
@@ -136,6 +143,7 @@ IF(OHMMS_DIM MATCHES 3)
136143
EinsplineSetBuilder_createSPOs.cpp
137144
BsplineFactory/createComplexDouble.cpp
138145
BsplineFactory/createComplexSingle.cpp
146+
BsplineFactory/HybridRepCenterOrbitals.cpp
139147
BandInfo.cpp
140148
BsplineFactory/BsplineReaderBase.cpp
141149
)

0 commit comments

Comments
 (0)