From 6fe5395b6c46d28414fb7b3e5617b943a856a09e Mon Sep 17 00:00:00 2001 From: Ian Gibbs <90706300+idigs@users.noreply.github.com> Date: Wed, 28 Aug 2024 08:26:43 -0400 Subject: [PATCH 1/3] set build type release --- ci_stub/onyx_job_build_gpu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci_stub/onyx_job_build_gpu.sh b/ci_stub/onyx_job_build_gpu.sh index 8aa3d51a..74cda405 100755 --- a/ci_stub/onyx_job_build_gpu.sh +++ b/ci_stub/onyx_job_build_gpu.sh @@ -12,7 +12,7 @@ rm -rf CMakeFiles rm -rf ./build_gpu && mkdir $_ cd ./build_gpu cmake \ - -DCMAKE_BUILD_TYPE:String=Debug \ + -DCMAKE_BUILD_TYPE:String=Release \ -DUSE_PSPLINE=ON \ -DUSE_ACC=ON \ -DUSE_FIO=OFF \ From 4638259ec45fe5a5d22ef39c7ecf99e2088ddce4 Mon Sep 17 00:00:00 2001 From: Ian Gibbs <90706300+idigs@users.noreply.github.com> Date: Wed, 28 Aug 2024 13:36:45 -0400 Subject: [PATCH 2/3] h5diff use relative precision 0.000008 --- test/egyro/korc_egyro.sh.in | 2 +- test/mars/korc_mars.sh.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/egyro/korc_egyro.sh.in b/test/egyro/korc_egyro.sh.in index 2f564541..ae532ed4 100755 --- a/test/egyro/korc_egyro.sh.in +++ b/test/egyro/korc_egyro.sh.in @@ -15,4 +15,4 @@ fi #assumes binary directory ../KORC/build/bin was added to path ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} $1 ./xkorc $INPUT_FILE $OUT_DIR/ -h5diff -r -d 0.000001 $OUT_DIR/file_0.h5 ${CMAKE_SOURCE_DIR}/test/egyro/file_0.h5 +h5diff -r -p 0.000008 $OUT_DIR/file_0.h5 ${CMAKE_SOURCE_DIR}/test/egyro/file_0.h5 diff --git a/test/mars/korc_mars.sh.in b/test/mars/korc_mars.sh.in index ddbcad14..7d40ea00 100755 --- a/test/mars/korc_mars.sh.in +++ b/test/mars/korc_mars.sh.in @@ -17,4 +17,4 @@ fi ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} $1 ./xkorc $INPUT_FILE $OUT_DIR/ -h5diff -r -d 0.008 $OUT_DIR/file_0.h5 ${CMAKE_SOURCE_DIR}/test/mars/file_0_new_random.h5 +h5diff -r -p 0.000008 $OUT_DIR/file_0.h5 ${CMAKE_SOURCE_DIR}/test/mars/file_0_new_random.h5 From da83945ceed047d7cd4a12afcfdda439b019f91f Mon Sep 17 00:00:00 2001 From: Ian Gibbs <90706300+idigs@users.noreply.github.com> Date: Wed, 28 Aug 2024 14:27:07 -0400 Subject: [PATCH 3/3] set build type debug --- ci_stub/onyx_job_build_gpu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci_stub/onyx_job_build_gpu.sh b/ci_stub/onyx_job_build_gpu.sh index 74cda405..8aa3d51a 100755 --- a/ci_stub/onyx_job_build_gpu.sh +++ b/ci_stub/onyx_job_build_gpu.sh @@ -12,7 +12,7 @@ rm -rf CMakeFiles rm -rf ./build_gpu && mkdir $_ cd ./build_gpu cmake \ - -DCMAKE_BUILD_TYPE:String=Release \ + -DCMAKE_BUILD_TYPE:String=Debug \ -DUSE_PSPLINE=ON \ -DUSE_ACC=ON \ -DUSE_FIO=OFF \