/aosp_15_r20/external/eigen/bench/btl/data/ |
H A D | mk_gnuplot_script.sh | 5 cat $WHAT.hh > $WHAT.gnuplot 9 echo plot \\ >> $WHAT.gnuplot 23 echo "'"$FILE"'" title "'"$TITLE"'" ",\\" >> $WHAT.gnuplot 27 echo "'"$LAST"'" title "'"$TITLE"'" >> $WHAT.gnuplot 31 echo set term pbm small color >> $WHAT.gnuplot 32 echo set output "'"$WHAT.ppm"'" >> $WHAT.gnuplot 33 echo plot \\ >> $WHAT.gnuplot 40 echo "'"$FILE"'" title "'"$TITLE"'" ",\\" >> $WHAT.gnuplot 44 echo "'"$LAST"'" title "'"$TITLE"'" >> $WHAT.gnuplot 46 echo set term jpeg large >> $WHAT.gnuplot [all …]
|
H A D | mk_new_gnuplot.sh | 5 cat ../gnuplot_common_settings.hh > ${WHAT}.gnuplot 7 …o "set title " `grep ${WHAT} ../action_settings.txt | head -n 1 | cut -d ";" -f 2` >> $WHAT.gnuplot 8 … `grep ${WHAT} ../action_settings.txt | head -n 1 | cut -d ";" -f 3` " offset 0,0" >> $WHAT.gnuplot 9 … xrange [" `grep ${WHAT} ../action_settings.txt | head -n 1 | cut -d ";" -f 4` "]" >> $WHAT.gnuplot 13 echo "set xrange [2:16]" >> $WHAT.gnuplot 14 echo "set nologscale" >> $WHAT.gnuplot 21 echo set term postscript color rounded enhanced >> $WHAT.gnuplot 22 echo set output "'"../${DIR}/$WHAT.ps"'" >> $WHAT.gnuplot 28 echo plot \\ >> $WHAT.gnuplot 39 …E"'" `grep $TITLE ../perlib_plot_settings.txt | head -n 1 | cut -d ";" -f 2` "\\" >> $WHAT.gnuplot [all …]
|
/aosp_15_r20/external/eigen/bench/perf_monitoring/ |
H A D | make_plot.sh | 22 echo "set title '$WHAT'" > $WHAT.gnuplot 23 echo "set key autotitle columnhead outside " >> $WHAT.gnuplot 24 echo "set xtics rotate 1" >> $WHAT.gnuplot 26 echo "set term pdf color rounded enhanced fontscale 0.35 size 7in,5in" >> $WHAT.gnuplot 27 echo set output "'"$WHAT.pdf"'" >> $WHAT.gnuplot 30 … "plot for [col=2:$col+1] '$WHAT.out.header' using 0:col:xticlabels(1) with lines" >> $WHAT.gnuplot 31 echo " " >> $WHAT.gnuplot 33 gnuplot -persist < $WHAT.gnuplot 39 rm $WHAT.out.header $WHAT.gnuplot
|
/aosp_15_r20/external/ltp/testcases/open_posix_testsuite/stress/threads/fork/ |
H A D | do-plot | 54 cat > $TMP/gnuplot.script <<EOF 84 echo "set arrow from $x, graph 0 to $x, graph 0.$height" >> $TMP/gnuplot.script 85 echo "set label \"$text\" at $x, graph 0.$height_text center" >> $TMP/gnuplot.script 99 echo $plot_cmd >> $TMP/gnuplot.script 102 ( cat $TMP/gnuplot.script; cat ) | gnuplot
|
/aosp_15_r20/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/ |
H A D | do-plot | 54 cat > $TMP/gnuplot.script <<EOF 84 echo "set arrow from $x, graph 0 to $x, graph 0.$height" >> $TMP/gnuplot.script 85 echo "set label \"$text\" at $x, graph 0.$height_text center" >> $TMP/gnuplot.script 99 echo $plot_cmd >> $TMP/gnuplot.script 102 ( cat $TMP/gnuplot.script; cat ) | gnuplot
|
/aosp_15_r20/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/ |
H A D | do-plot | 54 cat > $TMP/gnuplot.script <<EOF 84 echo "set arrow from $x, graph 0 to $x, graph 0.$height" >> $TMP/gnuplot.script 85 echo "set label \"$text\" at $x, graph 0.$height_text center" >> $TMP/gnuplot.script 99 echo $plot_cmd >> $TMP/gnuplot.script 102 cat $TMP/gnuplot.script | gnuplot
|
H A D | NOTES | 31 This script will use gnuplot to create a png file named scalable.png. 33 (If your gnuplot does not support png terminal, just remove
|
/aosp_15_r20/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/ |
H A D | do-plot | 54 cat > $TMP/gnuplot.script <<EOF 84 echo "set arrow from $x, graph 0 to $x, graph 0.$height" >> $TMP/gnuplot.script 85 echo "set label \"$text\" at $x, graph 0.$height_text center" >> $TMP/gnuplot.script 99 echo $plot_cmd >> $TMP/gnuplot.script 102 ( cat $TMP/gnuplot.script; cat ) | gnuplot
|
/aosp_15_r20/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/ |
H A D | do-plot | 54 cat > $TMP/gnuplot.script <<EOF 84 echo "set arrow from $x, graph 0 to $x, graph 0.$height" >> $TMP/gnuplot.script 85 echo "set label \"$text\" at $x, graph 0.$height_text center" >> $TMP/gnuplot.script 99 echo $plot_cmd >> $TMP/gnuplot.script 102 ( cat $TMP/gnuplot.script; cat ) | gnuplot
|
/aosp_15_r20/external/AFLplusplus/ |
H A D | afl-plot | 37 This program generates gnuplot images from afl-fuzz output data. 105 GNUPLOT=`command -v gnuplot 2>/dev/null` 235 ) | gnuplot 2> /dev/null & 249 ) | gnuplot 2> /dev/null & 263 ) | gnuplot 2> /dev/null & 277 ) | gnuplot 2> /dev/null & 299 ) | gnuplot || echo "Note: if you see errors concerning 'unknown or ambiguous terminal type' then y…
|
/aosp_15_r20/build/bazel/scripts/incremental_build/ |
H A D | plot_metrics.py | 126 with tempfile.NamedTemporaryFile("w+t") as gnuplot: 127 gnuplot.write(script) 128 gnuplot.flush() 130 args=["gnuplot", gnuplot.name],
|
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Modules/ |
D | FindGnuplot.cmake | 8 this module looks for gnuplot 30 gnuplot 44 …string(REGEX REPLACE "^gnuplot ([0-9\\.]+)( patchlevel )?" "\\1." GNUPLOT_VERSION_STRING "${GNUPLO…
|
/aosp_15_r20/external/rust/android-crates-io/crates/criterion/ |
D | README.md | 48 - __Charts__: Uses [gnuplot](http://www.gnuplot.info/) to generate detailed graphs of benchmark res… 53 In order to generate plots, you must have [gnuplot](http://www.gnuplot.info/) installed. See the gn…
|
D | CHANGELOG.md | 153 gnuplot backend will be used by default when available, and the plotters backend will be used when 154 gnuplot is not available or when requested. 289 - Don't panic when `gnuplot --version` fails. 293 - Criterion.rs no longer fails to parse gnuplot version numbers like 294 `gnuplot 5.2 patchlevel 5a (Gentoo revision r0)` 295 - Criterion.rs no longer prints an error message that gnuplot couldn't be found when chart 299 make them unique. This fixes a problem where gnuplot would crash if the title was extremely long, 476 cause Criterion.rs to generate extra debug output and save the gnuplot scripts 481 - Don't panic on IO errors or gnuplot failures 482 - Fix generation of invalid gnuplot scripts when benchmarking over inputs and inputs include values…
|
D | CONTRIBUTING.md | 27 You'll probably want to install [gnuplot](http://www.gnuplot.info/) as well. See the gnuplot websit…
|
/aosp_15_r20/external/iperf3/contrib/ |
H A D | README.txt | 4 iperf3_to_gnuplot.py: converts iperf3 JSON output to format easy to plot in gnuplot 6 iperf3.gp: sample gnuplot commands to plot throught and retransmits
|
/aosp_15_r20/external/pffft/ |
H A D | plots.sh | 46 gnuplot -e "${E}" 48 gnuplot -e "${E}" --persist
|
/aosp_15_r20/external/rust/android-crates-io/crates/criterion-plot/ |
D | CONTRIBUTING.md | 27 You'll probably want to install [gnuplot](http://www.gnuplot.info/) as well. See the gnuplot websit…
|
/aosp_15_r20/external/regex-re2/benchlog/ |
H A D | benchplot.py | 8 class gnuplot(object): class 95 with gnuplot() as plot:
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/re2/benchlog/ |
D | benchplot.py | 8 class gnuplot(object): class 95 with gnuplot() as plot:
|
/aosp_15_r20/external/cronet/third_party/re2/src/benchlog/ |
H A D | benchplot.py | 8 class gnuplot(object): class 95 with gnuplot() as plot:
|
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/benches-disabled/ |
D | README.md | 8 [Gnuplot](http://www.gnuplot.info/) is required for graph generation. If gnuplot is not installed,…
|
/aosp_15_r20/frameworks/rs/perf-test-scripts/ |
H A D | timing | 242 gnuplot -p plot.tmp 301 gnuplot -p plot.tmp
|
/aosp_15_r20/external/cronet/third_party/quic_trace/src/ |
H A D | README.md | 23 1. A simple gnuplot-based trace renderer. 61 ## Legacy gnuplot-based renderer
|
/aosp_15_r20/external/rust/android-crates-io/crates/criterion-plot/src/ |
D | lib.rs | 546 let mut gnuplot = Command::new("gnuplot") in draw() localVariable 551 self.dump(gnuplot.stdin.as_mut().unwrap())?; in draw() 552 Ok(gnuplot) in draw()
|