Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compilation #271

Open
wants to merge 9 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
build/*
CMakeCache.txt
CMakeFiles/
CTestTestfile.cmake
DartConfiguration.tcl
Makefile
bin/
cmake_install.cmake
src/CMakeFiles/
src/CTestTestfile.cmake
src/Drivers/CMakeFiles/
src/Drivers/CTestTestfile.cmake
src/Drivers/Makefile
src/Drivers/cmake_install.cmake
src/Drivers/tests/CMakeFiles/
src/Drivers/tests/CTestTestfile.cmake
src/Drivers/tests/Makefile
src/Drivers/tests/cmake_install.cmake
src/Makefile
src/Particle/tests/CMakeFiles/
src/Particle/tests/CTestTestfile.cmake
src/Particle/tests/Makefile
src/Particle/tests/cmake_install.cmake
src/QMCWaveFunctions/CMakeFiles/
src/QMCWaveFunctions/CTestTestfile.cmake
src/QMCWaveFunctions/Makefile
src/QMCWaveFunctions/cmake_install.cmake
src/QMCWaveFunctions/tests/CMakeFiles/
src/QMCWaveFunctions/tests/CTestTestfile.cmake
src/QMCWaveFunctions/tests/Makefile
src/QMCWaveFunctions/tests/cmake_install.cmake
src/Utilities/CMakeFiles/
src/Utilities/CTestTestfile.cmake
src/Utilities/Makefile
src/Utilities/cmake_install.cmake
src/Utilities/tests/CMakeFiles/
src/Utilities/tests/CTestTestfile.cmake
src/Utilities/tests/Makefile
src/Utilities/tests/cmake_install.cmake
src/cmake_install.cmake
src/config.h CMakeCache.txt
CMakeFiles/
CTestTestfile.cmake
DartConfiguration.tcl
Makefile

25 changes: 25 additions & 0 deletions Benchmark_base/plot.gp
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
set term png size 1700,700 enhanced font "Terminal,12"
set output "plot.png"
#set grid

set datafile separator ";"
set auto x

set style data histogram
set style fill solid border -1
set boxwidth 0.9

set xtic rotate by -44 scale 0
set logscale y
set multiplot layout 1, 1 rowsfirst

set key left
set ylabel "Time (s)"
set xlabel "Running on 'Nb' mpi process and 'Nb' omp threads"
set title "Scalability analysis of the miniQMC application with differents problems size"
plot "scalabilite_bench211.dat" using 2:xticlabels(stringcolumn(1)) t "miniQMC+211",\
"scalabilite_bench221.dat" using 2:xticlabels(stringcolumn(1)) t "miniQMC+221",\
"scalabilite_bench222.dat" using 2:xticlabels(stringcolumn(1)) t "miniQMC+222",\
"scalabilite_bench422.dat" using 2:xticlabels(stringcolumn(1)) t "miniQMC+422"


Binary file added Benchmark_base/plot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions Benchmark_base/scalabilite_bench.dat
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
1 1; 0.00
;
2 1; 2.16
;
1 2; 0.00
;
4 1; 2.16
;
1 4; 0.00
;
2 2; 2.15
;
8 1; 2.17
;
1 8; 0.00
;
2 4; 2.15
;
4 2; 2.16
;
16 1; 2.23
;
1 16; 0.00
;
2 8; 2.15
;
4 4; ;
8 2; ;
32 1; 0.14
;
1 32;
40 changes: 40 additions & 0 deletions Benchmark_base/scalabilite_bench211.dat
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
1 1; 1.61
1 2; 1.55
1 4; 1.79
1 8; 2.02
1 16; 2.15
1 32; 2.94
1 48; 3.35
2 1; 1.79
2 2; 2.29
2 4; 4.36
2 8; 8.23
2 16; 16.06
2 24; 24.11
3 16; 4.13
4 1; 1.67
4 2; 1.84
4 4; 1.93
4 8; 2.88
4 12; 3.02
6 8; 2.75
8 1; 1.75
8 2; 1.95
8 4; 2.55
8 6; 2.74
12 4; 2.77
16 1; 1.83
16 2; 2.43
16 3; 2.76
24 2; 2.80
32 1; 0.11
48 1; 0.12









41 changes: 41 additions & 0 deletions Benchmark_base/scalabilite_bench221.dat
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
1 1; 5.03
1 2; 5.28
1 4; 6.32
1 8; 6.00
1 16; 6.38
1 32; 10.34
1 48; 12.62
2 1; 5.22
2 2; 7.68
2 4; 15.03
2 8; 29.63
2 16; 59.78
2 24; 89.99
3 16; 14.64
4 1; 5.17
4 2; 5.74
4 4; 6.01
4 8; 9.05
4 12; 10.70
6 8; 10.65
8 1; 5.42
8 2; 5.71
8 4; 8.48
8 6; 10.62
12 4; 10.67
16 1; 5.61
16 2; 8.29
16 3; 10.66
24 2; 10.59
32 1; 0.10
48 1; 0.09










34 changes: 34 additions & 0 deletions Benchmark_base/scalabilite_bench222.dat
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
1 1; 21.50
1 2; 22.36
1 4; 22.43
1 8; 23.33
1 16; 25.20
1 32; 41.16
1 48; 58.76
2 1; 87.26
2 2; 33.48
2 4; 65.97
2 8; 132.41
2 16; 269.17
2 24; 402.38
3 16; 70.17
4 1; 21.49
4 2; 22.81
4 4; 23.95
4 8; 38.13
4 12; 52.21
6 8; 51.85
8 1; 22.58
8 2; 23.49
8 4; 37.01
8 6; 51.94
12 4; 52.10
16 1; 23.40
16 2; 36.36
16 3; 52.22
24 2; 52.61
32 1; 00.10
48 1; 00.11



40 changes: 40 additions & 0 deletions Benchmark_base/scalabilite_bench422.dat
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
1 1; 101.33
1 2; 101.38
1 4; 106.76
1 8; 112.05
1 16; 120.38
1 32; 210.00
1 48; 312.79
2 1; 103.69
2 2; 165.27
2 4; 336.69
2 8; 676.17
2 16; 1395.95
2 24; 2059.04
3 16; 385.52
4 1; 100.67
4 2; 109.86
4 4; 116.53
4 8; 197.72
4 12; 290.18
6 8; 289.73
8 1; 110.60
8 2; 116.01
8 4; 189.65
8 6; 289.75
12 4; 288.98
16 1; 114.77
16 2; 193.47
16 3; 290.29
24 2; 290.24
32 1; 0.15
48 1; 0.15









26 changes: 26 additions & 0 deletions Benchmarks_omp/plot.gp
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
set term png size 1700,700 enhanced font "Terminal,12"
set output "plot.png"
#set grid

set datafile separator ";"
set auto x

set style data histogram
set style fill solid border -1
set boxwidth 0.9

set xtic rotate by -44 scale 0
set logscale y
set yrange [0.01:10000]
set multiplot layout 1, 1 rowsfirst

set key left
set ylabel "Time (s)"
set xlabel "Running on 'Nb' mpi process and 'Nb' omp threads"
set title "Scalability analysis of the miniQMC application with differents problems size"
plot "scalabilite_bench211.dat" using 2:xticlabels(stringcolumn(1)) t "miniQMC+211",\
"scalabilite_bench221.dat" using 2:xticlabels(stringcolumn(1)) t "miniQMC+221",\
"scalabilite_bench222.dat" using 2:xticlabels(stringcolumn(1)) t "miniQMC+222",\
"scalabilite_bench422.dat" using 2:xticlabels(stringcolumn(1)) t "miniQMC+422",\


Binary file added Benchmarks_omp/plot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions Benchmarks_omp/scalabilite_bench211.dat
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
1 1; 2.30
1 2; 2.77
1 4; 2.69
1 8; 2.93
1 16; 2.88
1 32; 4.37
1 48; 4.61
2 1; 2.48
2 2; 3.20
2 4; 6.27
2 8; 12.05
2 16; 23.58
2 24; 35.24
3 16; 5.56
4 1; 2.54
4 2; 2.79
4 4; 2.79
4 8; 4.06
4 12; 4.33
6 8; 3.97
8 1; 2.46
8 2; 2.96
8 4; 3.73
8 6; 4.15
12 4; 3.99
16 1; 2.61
16 2; 3.43
16 3; 3.92
24 2; 3.92
32 1; 0.11
48 1; 0.10
;





40 changes: 40 additions & 0 deletions Benchmarks_omp/scalabilite_bench221.dat
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
1 1; 6.96
1 2; 7.32
1 4; 7.84
1 8; 8.14
1 16; 8.54
1 32; 13.57
1 48; 15.81
2 1; 7.16
2 2; 10.96
2 4; 21.46
2 8; 43.23
2 16; 86.13
2 24; 129.11
3 16; 19.22
4 1; 6.97
4 2; 7.79
4 4; 8.12
4 8; 12.19
4 12; 14.48
6 8; 14.49
8 1; 7.56
8 2; 7.76
8 4; 11.50
8 6; 14.34
12 4; 14.11
16 1; 7.67
16 2; 11.28
16 3; 14.21
24 2; 14.19
32 1; 0.10
48 1; 0.11
;






1

Loading