diff --git a/DoubletestSISMBench1st b/DoubletestSISMBench1st index 26ac8b5..78f9e52 100755 --- a/DoubletestSISMBench1st +++ b/DoubletestSISMBench1st @@ -1,21 +1,21 @@ #!/bin/bash echo "Starting Double test" +set -x cd src/ -make -f Makefile.intel clean -make -f Makefile.intel -make -f Makefile.GPU.intel +make prec=double clean +make prec=double cd ../Benchmarks/GridGradientBenchmark -make -f Makefile.GPU clean -make -f Makefile.GPU +make -f Makefile.intel clean +make -f Makefile.intel #./ChiBenchmark_GPU ../ConfigFiles/90PotSIS.par T #./ChiBenchmark_GPU ../ConfigFiles/MarkusBenchmark.par T #./ChiBenchmark_GPU ../ConfigFiles/MarkusBenchmark1SIS.par T -./GridGradient_GPU ../ConfigFiles/MarkusBenchmark.par T +./GridGradient_CPU ../ConfigFiles/MarkusBenchmark.par T #cd ../Benchmarks/GradientBenchmark #make -f Makefile clean #make -f MakefileDouble #./GradientBenchmark echo "Finish Double test" diff --git a/FloattestSISMBench1st b/FloattestSISMBench1st index 1aa917a..8f629a0 100755 --- a/FloattestSISMBench1st +++ b/FloattestSISMBench1st @@ -1,16 +1,17 @@ #!/bin/bash echo "Starting Float test" cd src/ -make -f Makefile.intel clean -make -f MakefileFloat.intel -make -f MakefileFloat.GPU.intel +make prec=single clean +make prec=single +cd - -cd ../Benchmarks/GridGradientBenchmark -make -f Makefile.GPU clean -make -f MakefileFloat.GPU +cd ./Benchmarks/GridGradientBenchmark +make -f Makefile.intel clean +make -f Makefile.intel +#make -f MakefileFloat.GPU #./ChiBenchmark_GPU ../ConfigFiles/90PotSIS.par T -./GridGradient_GPU ../ConfigFiles/MarkusBenchmark.par T +./GridGradient_CPU ../ConfigFiles/MarkusBenchmark.par T #./ChiBenchmark_GPU ../ConfigFiles/MarkusBenchmark1SIS.par T echo "Finish Float test"