Created
October 21, 2017 01:16
-
-
Save rvprasad/bb7b52828ff9c3985a412b5ea7880953 to your computer and use it in GitHub Desktop.
creates the graph from the data generated by test_pool_map.py.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set terminal png | |
set output "test_pool_map.png" | |
set logscale | |
set xlabel "Size of aux data [Number of ints]" | |
set ylabel "Performance [seconds per iteration]" | |
set title "Performance of options vs Size of aux data" | |
plot "test_pool_map.csv" using 1:2 title "without initializer / default chunksize" with linespoints, \ | |
"test_pool_map.csv" using 1:3 title "with initializer / default chunksize" with linespoints, \ | |
"test_pool_map.csv" using 1:4 title "without initializer / 250 chunksize" with linespoints, \ | |
"test_pool_map.csv" using 1:5 title "with initializer / 250 chunksize" with linespoints, \ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Related to test_pool_map.py gist.