new_plot 658 B

123456789101112131415
  1. set terminal postscript enhanced colour portrait size 6,6
  2. set key top left
  3. set ylabel "Time (ms)"
  4. set out 'dist_statesaving_attributes.eps'
  5. set title "State saving performance for complex states"
  6. set xlabel "# of attributes"
  7. plot 'AttributesState_custom' w l lw 5 title 'Custom copy', 'AttributesState_deepcopy' w l lw 5 title 'Deepcopy', 'AttributesState_pickle' w l lw 5 title 'cPickle'
  8. set out 'dist_statesaving_size.eps'
  9. set title "State saving performance for big states"
  10. set xlabel "# of floats stored"
  11. plot 'SizeState_custom' w l lw 5 title 'Custom copy', 'SizeState_deepcopy' w l lw 5 title 'Deepcopy', 'SizeState_pickle' w l lw 5 title 'cPickle'