Skip to content

Instantly share code, notes, and snippets.

@rvprasad
Created October 21, 2017 01:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rvprasad/bb7b52828ff9c3985a412b5ea7880953 to your computer and use it in GitHub Desktop.
Save rvprasad/bb7b52828ff9c3985a412b5ea7880953 to your computer and use it in GitHub Desktop.
creates the graph from the data generated by test_pool_map.py.
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, \
@rvprasad
Copy link
Author

Related to test_pool_map.py gist.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment