diff --git a/tests/test_automation/jenkins_rhea_cpu.sh b/tests/test_automation/jenkins_rhea_cpu.sh index 0858d3ab4..f19cf4803 100755 --- a/tests/test_automation/jenkins_rhea_cpu.sh +++ b/tests/test_automation/jenkins_rhea_cpu.sh @@ -30,7 +30,7 @@ mkdir -p build cd build -cmake -DCMAKE_C_COMPILER="mpicc" -DCMAKE_CXX_COMPILER="mpicxx" -DBLAS_blas_LIBRARY="/usr/lib64/libblas.so.3" -DLAPACK_lapack_LIBRARY="/usr/lib64/atlas/liblapack.so.3" -DHDF5_INCLUDE_DIR="/sw/rhea/hdf5/1.8.11/rhel6.6_gnu4.8.2/include" .. | tee cmake.out +cmake -DCMAKE_C_COMPILER="mpicc" -DCMAKE_CXX_COMPILER="mpicxx" -DBLAS_blas_LIBRARY="/usr/lib64/libblas.so.3" -DLAPACK_lapack_LIBRARY="/usr/lib64/atlas/liblapack.so.3" -DHDF5_INCLUDE_DIR="/sw/rhea/hdf5/1.8.11/rhel6.6_gnu4.8.2/include" .. 2>&1 | tee cmake.out # hacky way to check on cmake. works for now if ! ( grep -- '-- The C compiler identification is GNU 5.3.0' cmake.out && \ diff --git a/tests/test_automation/jenkins_rhea_cpu_mixed.sh b/tests/test_automation/jenkins_rhea_cpu_mixed.sh index 5fd406285..bbf4b63d0 100755 --- a/tests/test_automation/jenkins_rhea_cpu_mixed.sh +++ b/tests/test_automation/jenkins_rhea_cpu_mixed.sh @@ -30,7 +30,7 @@ mkdir -p build cd build -cmake -DQMC_MIXED_PRECISION=1 -DCMAKE_C_COMPILER="mpicc" -DCMAKE_CXX_COMPILER="mpicxx" -DBLAS_blas_LIBRARY="/usr/lib64/libblas.so.3" -DLAPACK_lapack_LIBRARY="/usr/lib64/atlas/liblapack.so.3" -DHDF5_INCLUDE_DIR="/sw/rhea/hdf5/1.8.11/rhel6.6_gnu4.8.2/include" .. | tee cmake.out +cmake -DQMC_MIXED_PRECISION=1 -DCMAKE_C_COMPILER="mpicc" -DCMAKE_CXX_COMPILER="mpicxx" -DBLAS_blas_LIBRARY="/usr/lib64/libblas.so.3" -DLAPACK_lapack_LIBRARY="/usr/lib64/atlas/liblapack.so.3" -DHDF5_INCLUDE_DIR="/sw/rhea/hdf5/1.8.11/rhel6.6_gnu4.8.2/include" .. 2>&1 | tee cmake.out # hacky way to check on cmake. works for now if ! ( grep -- '-- The C compiler identification is GNU 5.3.0' cmake.out && \ @@ -40,7 +40,7 @@ then exit 1 fi -if ! ( grep -- 'Base precision = float' cmake.out ) ; +if ! ( grep 'Base precision = float' cmake.out ) ; then echo "mixed precision not enabled. exiting." exit 1 diff --git a/tests/test_automation/jenkins_rhea_gpu.sh b/tests/test_automation/jenkins_rhea_gpu.sh index ead787590..2f3fea719 100755 --- a/tests/test_automation/jenkins_rhea_gpu.sh +++ b/tests/test_automation/jenkins_rhea_gpu.sh @@ -31,7 +31,7 @@ mkdir -p build cd build -cmake -DCMAKE_C_COMPILER="mpicc" -DCMAKE_CXX_COMPILER="mpicxx" -DCMAKE_CXX_FLAGS="-mno-bmi2 -mno-avx2" -DCMAKE_C_FLAGS="-mno-bmi2 -mno-avx2" -DBLAS_blas_LIBRARY="/usr/lib64/libblas.so.3" -DLAPACK_lapack_LIBRARY="/usr/lib64/atlas/liblapack.so.3" -DHDF5_INCLUDE_DIR="/sw/rhea/hdf5/1.8.11/rhel6.6_intel14.0.4/include" -DQMC_CUDA=1 .. | tee cmake.out +cmake -DCMAKE_C_COMPILER="mpicc" -DCMAKE_CXX_COMPILER="mpicxx" -DCMAKE_CXX_FLAGS="-mno-bmi2 -mno-avx2" -DCMAKE_C_FLAGS="-mno-bmi2 -mno-avx2" -DBLAS_blas_LIBRARY="/usr/lib64/libblas.so.3" -DLAPACK_lapack_LIBRARY="/usr/lib64/atlas/liblapack.so.3" -DHDF5_INCLUDE_DIR="/sw/rhea/hdf5/1.8.11/rhel6.6_intel14.0.4/include" -DQMC_CUDA=1 .. 2>&1 | tee cmake.out # hacky way to check on cmake. works for now if ! ( grep -- '-- The C compiler identification is GNU 5.3.0' cmake.out && \