mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
bffcaf6e70
Original commit message from CVS: 2005-02-24 Andy Wingo <wingo@pobox.com> * tests/mass_elements.gnuplot: gnuplot file for the mass_elements benchmark. Run as gnuplot mass_elements.gnuplot > foo.ps, after running bench-mass_elements.scm. * tests/bench-mass_elements.scm: New script, runs mass_elements for various numbers of identities, outputting the results to a file. Requires guile 1.6. Just for testing.
8 lines
461 B
Gnuplot
8 lines
461 B
Gnuplot
set terminal postscript landscape monochrome dashed "Helvetica" 14
|
|
set xlabel "Number of Identity Elements"
|
|
set ylabel "Seconds"
|
|
set title "Mass Pipeline Performance: fakesrc ! N * identity ! fakesink"
|
|
plot "mass_elements.data" using 1:2 title "Element creation", \
|
|
"mass_elements.data" using 1:3 title "State change", \
|
|
"mass_elements.data" using 1:4 title "Processing 1000 buffers", \
|
|
"mass_elements.data" using 1:5 title "Element destruction"
|