-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #242 from ye-luo/add-delayed-update
Add delayed update
- Loading branch information
Showing
33 changed files
with
2,679 additions
and
1,202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -178,4 +178,6 @@ ENDIF() | |
|
||
SUBDIRS(Particle/tests) | ||
|
||
SUBDIRS(QMCWaveFunctions) | ||
|
||
SUBDIRS(Drivers) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,20 @@ | ||
if(QMC_BUILD_LEVEL GREATER 4) | ||
# add apps XYZ.cpp, e.g., qmc_particles.cpp | ||
#SET(ESTEST einspline_smp einspline_spo qmc_particles moveonsphere twobody ptclset) | ||
SET(ESTEST check_wfc check_spo check_determinant) | ||
|
||
FOREACH(p ${ESTEST}) | ||
ADD_EXECUTABLE( ${p} ${p}.cpp) | ||
TARGET_LINK_LIBRARIES(${p} qmcbase qmcutil ${QMC_UTIL_LIBS} ${MPI_LIBRARY}) | ||
ENDFOREACH(p ${ESTEST}) | ||
|
||
ADD_LIBRARY(miniwfs ../QMCWaveFunctions/WaveFunction.cpp ../QMCWaveFunctions/SPOSet_builder.cpp) | ||
|
||
SET(DRIVERS miniqmc miniqmc_sync_move) | ||
#////////////////////////////////////////////////////////////////////////////////////// | ||
#// This file is distributed under the University of Illinois/NCSA Open Source License. | ||
#// See LICENSE file in top directory for details. | ||
#// | ||
#// Copyright (c) 2019 QMCPACK developers. | ||
#// | ||
#// File developed by: Ye Luo, [email protected], Argonne National Laboratory | ||
#// | ||
#// File created by: Ye Luo, [email protected], Argonne National Laboratory | ||
#////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
SET(DRIVERS check_spo check_wfc miniqmc miniqmc_sync_move) | ||
|
||
FOREACH(p ${DRIVERS}) | ||
ADD_EXECUTABLE( ${p} ${p}.cpp) | ||
TARGET_LINK_LIBRARIES(${p} miniwfs qmcbase qmcutil ${QMC_UTIL_LIBS} ${MPI_LIBRARY}) | ||
TARGET_LINK_LIBRARIES(${p} qmcwfs qmcbase qmcutil ${QMC_UTIL_LIBS} ${MPI_LIBRARY}) | ||
ENDFOREACH(p ${ESTEST}) | ||
|
||
endif() | ||
|
||
SUBDIRS(tests) | ||
|
||
#SET(boost_test exchange_walker) | ||
#FOREACH(p ${boost_test}) | ||
# ADD_EXECUTABLE( ${p} ${p}.cpp) | ||
# TARGET_LINK_LIBRARIES(${p} qmcbase qmcutil ${QMC_UTIL_LIBS} boost ${MPI_LIBRARY}) | ||
#ENDFOREACH(p ${boost_test}) | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.