From d5a6d6d68214c09a661bee91c0d1ec79d383579d Mon Sep 17 00:00:00 2001 From: Paul Kent Date: Sat, 8 Feb 2025 18:25:48 -0500 Subject: [PATCH] Increase tol in mixed precision --- src/Estimators/TraceManager.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Estimators/TraceManager.cpp b/src/Estimators/TraceManager.cpp index 9f08671cf8..7520889144 100644 --- a/src/Estimators/TraceManager.cpp +++ b/src/Estimators/TraceManager.cpp @@ -19,7 +19,11 @@ namespace qmcplusplus { +#if defined(MIXED_PRECISION) +double TraceManager::trace_tol = 1e-5; +#else double TraceManager::trace_tol = 1e-8; +#endif }