MAX Properties bumped up significantly. Force estimator adds many

This commit is contained in:
Peter Doak 2020-01-23 16:33:50 -05:00
parent 7e0626f01c
commit 08c8651770
1 changed files with 5 additions and 1 deletions

View File

@ -155,6 +155,10 @@ SET (EXECUTABLE_OUTPUT_PATH ${qmcpack_BINARY_DIR}/bin CACHE PATH "Single output
######################################################################
# Set the compiler-time parameters
# WALKER_MAX_PROPERTIES max number of observables + 12 or so standard
# props. Things like forces are per particle so you may need this to
# rather large. Each property increases walker size by
# sizeof(FULLPRECREALTYPE)
# OHMMS_DIM = dimension of the problem
# OHMMS_INDEXTYPE = type of index
# OHMMS_PRECISION = base precision, float, double etc
@ -163,7 +167,7 @@ SET (EXECUTABLE_OUTPUT_PATH ${qmcpack_BINARY_DIR}/bin CACHE PATH "Single output
# QMC_MPI = enable MPI
# QMC_OMP = enable OMP
######################################################################
SET(WALKER_MAX_PROPERTIES 32 CACHE STRING "Maximum number of properties tracked by walkers")
SET(WALKER_MAX_PROPERTIES 256 CACHE INT "Maximum number of properties tracked by walkers")
MARK_AS_ADVANCED(WALKER_MAX_PROPERTIES)
SET(OHMMS_DIM 3 CACHE STRING "Select physical dimension")
SET(OHMMS_INDEXTYPE int)