Commit befor trying to convert particle array to linked list to improve
performance.
This commit is contained in:
parent
05f5adcfe1
commit
60f38a2d95
8 changed files with 160 additions and 12 deletions
54
runs/cylFlow/compCPUTime.gp
Normal file
54
runs/cylFlow/compCPUTime.gp
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
|
||||
set terminal qt enhanced 1 size 1600, 1000 font "Times ,10"
|
||||
|
||||
set style line 1 pt 4 lc rgb "#B50427" #Squares red
|
||||
set style line 2 pt 6 lc rgb "#3B4CC1" #Circles blue
|
||||
set style line 3 pt 1 lc rgb "#2CA02C" #Crosses green
|
||||
set style line 4 pt 2 lc rgb "#FE7F0E" #Exes orange
|
||||
set style line 5 pt 8 lc rgb "#D6696B" #Triangles light red
|
||||
set style line 10 lt 1 lw 2.0 lc rgb "black" #Black solid line
|
||||
|
||||
folder1 = "2020-09-27_10.46.31/"
|
||||
folder2 = "2020-09-28_10.49.22/"
|
||||
folder3 = "2020-09-30_20.40.04/"
|
||||
folder4 = "2020-10-01_08.53.50/"
|
||||
|
||||
set key box opaque
|
||||
set pointsize 1.5
|
||||
|
||||
set ylabel "Time per particle (ms)"
|
||||
set xrange [0:8000]
|
||||
set xlabel "Iteration"
|
||||
|
||||
|
||||
set multiplot layout 2,3
|
||||
set title "Total"
|
||||
plot folder1."cpuTime.dat" u 1:(1e3*$3) t "Step 1" ls 1, \
|
||||
folder2."cpuTime.dat" u 1:(1e3*$3) t "Step 2" ls 2, \
|
||||
folder3."cpuTime.dat" u 1:(1e3*$3) t "Step 3" ls 3, \
|
||||
folder4."cpuTime.dat" u 1:(1e3*$3) t "Step 4" ls 4
|
||||
|
||||
set title "Push"
|
||||
plot folder1."cpuTime.dat" u 1:(1e3*$4) t "Step 1" ls 1, \
|
||||
folder2."cpuTime.dat" u 1:(1e3*$4) t "Step 2" ls 2, \
|
||||
folder3."cpuTime.dat" u 1:(1e3*$4) t "Step 3" ls 3, \
|
||||
folder4."cpuTime.dat" u 1:(1e3*$4) t "Step 4" ls 4
|
||||
|
||||
set title "Reset"
|
||||
plot folder1."cpuTime.dat" u 1:(1e3*$5) t "Step 1" ls 1, \
|
||||
folder2."cpuTime.dat" u 1:(1e3*$5) t "Step 2" ls 2, \
|
||||
folder3."cpuTime.dat" u 1:(1e3*$5) t "Step 3" ls 3, \
|
||||
folder4."cpuTime.dat" u 1:(1e3*$5) t "Step 4" ls 4
|
||||
|
||||
set title "Collisions"
|
||||
plot folder1."cpuTime.dat" u 1:(1e3*$6) t "Step 1" ls 1, \
|
||||
folder2."cpuTime.dat" u 1:(1e3*$6) t "Step 2" ls 2, \
|
||||
folder3."cpuTime.dat" u 1:(1e3*$6) t "Step 3" ls 3, \
|
||||
folder4."cpuTime.dat" u 1:(1e3*$6) t "Step 4" ls 4
|
||||
|
||||
set title "Weighting"
|
||||
plot folder1."cpuTime.dat" u 1:(1e3*$7) t "Step 1" ls 1, \
|
||||
folder2."cpuTime.dat" u 1:(1e3*$7) t "Step 2" ls 2, \
|
||||
folder3."cpuTime.dat" u 1:(1e3*$7) t "Step 3" ls 3, \
|
||||
folder4."cpuTime.dat" u 1:(1e3*$7) t "Step 4" ls 4
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue