From 10e84f95e72148824815cbb50040b10b3ee61ecf Mon Sep 17 00:00:00 2001 From: Pietro Incardona Date: Mon, 23 Nov 2015 08:30:33 -0500 Subject: [PATCH] Fixing no report level for VCluster --- build_vcluster.sh | 10 +++++----- src/VCluster_unit_test_util.hpp | 2 -- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/build_vcluster.sh b/build_vcluster.sh index f99d9df..bb7df29 100644 --- a/build_vcluster.sh +++ b/build_vcluster.sh @@ -77,15 +77,15 @@ then make if [ $? -ne 0 ]; then exit 1 ; fi - salloc --nodes=1 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1900 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 24 src/vcluster" + salloc --nodes=1 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1900 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 24 src/vcluster --report_level=no" if [ $? -ne 0 ]; then exit 1 ; fi - salloc --nodes=2 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1900 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 48 src/vcluster" + salloc --nodes=2 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1900 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 48 src/vcluster --report_level=no" if [ $? -ne 0 ]; then exit 1 ; fi - salloc --nodes=4 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1900 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 96 src/vcluster" + salloc --nodes=4 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1900 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 96 src/vcluster --report_level=no" if [ $? -ne 0 ]; then exit 1 ; fi - salloc --nodes=8 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1900 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 192 src/vcluster" + salloc --nodes=8 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1900 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 192 src/vcluster --report_level=no" if [ $? -ne 0 ]; then exit 1 ; fi - salloc --nodes=10 --ntasks-per-node=24 --time=00:5:00 --mem-per-cpu=1900 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 240 src/vcluster" + salloc --nodes=10 --ntasks-per-node=24 --time=00:5:00 --mem-per-cpu=1900 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 240 src/vcluster --report_level=no" if [ $? -ne 0 ]; then exit 1 ; fi else diff --git a/src/VCluster_unit_test_util.hpp b/src/VCluster_unit_test_util.hpp index f5304e8..2750267 100644 --- a/src/VCluster_unit_test_util.hpp +++ b/src/VCluster_unit_test_util.hpp @@ -8,8 +8,6 @@ #ifndef VCLUSTER_UNIT_TEST_UTIL_HPP_ #define VCLUSTER_UNIT_TEST_UTIL_HPP_ -#define VERBOSE_TEST - #include "VCluster.hpp" #include "Point_test.hpp" #include "Vector/vector_test_util.hpp" -- GitLab