generate plots in script
[AGH_fortran_course_solution.git] / make_results.sh
blob718f82e96ffe2ce595e83b00a657d6db6dcaf0ae
1 #!/bin/bash
3 for KIND in 4 8 16; do
4 for IMPL in naiv bett dot mat bett2 block; do
5 ./build/mull $KIND $IMPL > res/${IMPL}_$KIND
6 done
8 sed 's/\[kind\]/'$KIND'/' < template.gnuplot > script.gnuplot
10 cd res/
11 gnuplot -c ../script.gnuplot
12 cd ../
13 done
15 rm script.gnuplot