Home
last modified time | relevance | path

Searched full:gnuplot (Results 1 – 25 of 80) sorted by relevance

1234

/aosp_15_r20/external/eigen/bench/btl/data/
H A Dmk_gnuplot_script.sh5 cat $WHAT.hh > $WHAT.gnuplot
9 echo plot \\ >> $WHAT.gnuplot
23 echo "'"$FILE"'" title "'"$TITLE"'" ",\\" >> $WHAT.gnuplot
27 echo "'"$LAST"'" title "'"$TITLE"'" >> $WHAT.gnuplot
29 #echo set term postscript color >> $WHAT.gnuplot
30 #echo set output "'"$WHAT.ps"'" >> $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
[all …]
H A Dmk_new_gnuplot.sh5 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
24 # echo set term svg color rounded enhanced >> $WHAT.gnuplot
25 # echo "set terminal svg enhanced size 1000 1000 fname \"Times\" fsize 36" >> $WHAT.gnuplot
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/criterion-plot/src/
Dlib.rs10 //! - Simple "curves" (based on [`simple.dem`](http://gnuplot.sourceforge.net/demo/simple.html))
66 //! # .and_then(|gnuplot| {
67 //! # gnuplot.wait_with_output().ok().and_then(|p| String::from_utf8(p.stderr).ok())
146 //! # .and_then(|gnuplot| {
147 //! # gnuplot.wait_with_output().ok().and_then(|p| String::from_utf8(p.stderr).ok())
152 //! [`candlesticks.dem`](http://gnuplot.sourceforge.net/demo/candlesticks.html))
211 //! # .and_then(|gnuplot| {
212 //! # gnuplot.wait_with_output().ok().and_then(|p| String::from_utf8(p.stderr).ok())
216 //! - Multiaxis (based on [`multiaxis.dem`](http://gnuplot.sourceforge.net/demo/multiaxis.html))
281 //! # ok().and_then(|gnuplot| {
[all …]
/aosp_15_r20/external/eigen/bench/perf_monitoring/
H A Dmake_plot.sh22 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/AFLplusplus/
H A Dafl-plot37 This program generates gnuplot images from afl-fuzz output data.
105 GNUPLOT=`command -v gnuplot 2>/dev/null`
107 if [ "$GNUPLOT" = "" ]; then
109 echo "[-] Error: can't find 'gnuplot' in your \$PATH." 1>&2
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…
307 echo "[-] Error: something went wrong! Perhaps you have an ancient version of gnuplot?" 1>&2
/aosp_15_r20/external/rust/android-crates-io/crates/criterion/
Dappveyor.yml4 GNUPLOT: yes
6 GNUPLOT: no
17 …- ps: if (${env:GNUPLOT} -eq "yes") { Start-FileDownload "https://sourceforge.net/projects/gnuplot
18 - if %GNUPLOT%==yes gp467-win64-setup.exe /VERYSILENT /NORESTART
19 - if %GNUPLOT%==yes SET PATH=%PATH%;C:\Program Files\gnuplot\bin
DCHANGELOG.md124 - Escape single quotes in benchmark names when generating Gnuplot scripts.
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,
331 - Fixed a GNUplot error message when sample size is very small.
476 cause Criterion.rs to generate extra debug output and save the gnuplot scripts
[all …]
DREADME.md48 - __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…
DCONTRIBUTING.md27 You'll probably want to install [gnuplot](http://www.gnuplot.info/) as well. See the gnuplot websit…
/aosp_15_r20/build/bazel/scripts/incremental_build/
H A Dplot_metrics.py106 "gnuplot --version",
116 logging.warning("gnuplot unavailable")
126 with tempfile.NamedTemporaryFile("w+t") as gnuplot:
127 gnuplot.write(script)
128 gnuplot.flush()
130 args=["gnuplot", gnuplot.name],
136 logging.debug("GnuPlot script:\n%s", script)
138 logging.error("GnuPlot errors:\n%s\n%s", p.stderr, _with_line_num(script))
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Modules/
DFindGnuplot.cmake8 this module looks for gnuplot
16 GNUPLOT_FOUND - system has Gnuplot
17 GNUPLOT_EXECUTABLE - the Gnuplot executable
18 GNUPLOT_VERSION_STRING - the version of Gnuplot found (since CMake 2.8.8)
30 gnuplot
44 …string(REGEX REPLACE "^gnuplot ([0-9\\.]+)( patchlevel )?" "\\1." GNUPLOT_VERSION_STRING "${GNUPLO…
50 set(GNUPLOT ${GNUPLOT_EXECUTABLE}) variable
53 FIND_PACKAGE_HANDLE_STANDARD_ARGS(Gnuplot
/aosp_15_r20/external/rust/android-crates-io/crates/criterion/src/
Dlib.rs97 use crate::plot::{Gnuplot, Plotter};
112 Ok(_) => PlottingBackend::Gnuplot,
115 … VersionError::Exec(_) => eprintln!("Gnuplot not found, using plotters backend"),
117 "Gnuplot not found or not usable, using plotters backend\n{}",
286 /// Plotting backend which uses the external `gnuplot` command to render plots. This is the
287 /// default if the `gnuplot` command is installed.
288 Gnuplot, enumerator
289 /// Plotting backend which uses the rust 'Plotters' library. This is the default if `gnuplot`
298 PlottingBackend::Gnuplot => Some(Box::new(Gnuplot::default())), in create_plotter()
386 /// - Plotting: enabled, using gnuplot if available or plotters if gnuplot is not available
[all …]
/aosp_15_r20/external/ltp/testcases/open_posix_testsuite/stress/threads/fork/
H A Ddo-plot54 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
101 #cp $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 Ddo-plot54 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
101 #cp $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 Ddo-plot54 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
101 #cp $TMP/gnuplot.script .
102 cat $TMP/gnuplot.script | gnuplot
/aosp_15_r20/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/
H A Ddo-plot54 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
101 #cp $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 Ddo-plot54 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
101 #cp $TMP/gnuplot.script .
102 ( cat $TMP/gnuplot.script; cat ) | gnuplot
/aosp_15_r20/external/rust/android-crates-io/crates/criterion/src/plot/gnuplot_backend/
Dmod.rs46 script_path.set_extension("gnuplot"); in debug_script()
47 info!("Writing gnuplot script to {:?}", script_path); in debug_script()
70 pub(crate) struct Gnuplot { struct
74 impl Plotter for Gnuplot { argument
243 Ok(out) => error!("Error in Gnuplot: {}", String::from_utf8_lossy(&out.stderr)), in wait()
244 Err(e) => error!("Got IO error while waiting for Gnuplot to complete: {}", e), in wait()
249 "Waiting for {} gnuplot processes took {}", in wait()
/aosp_15_r20/external/regex-re2/benchlog/
H A Dbenchplot.py8 class gnuplot(object): class
79 command = subprocess.Popen(['gnuplot'], stdin=subprocess.PIPE)
90 subprocess.Popen(['gnuplot'], stdin=subprocess.PIPE)
92 print('you can install "gnuplot" to generate plots automatically')
95 with gnuplot() as plot:
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/re2/benchlog/
Dbenchplot.py8 class gnuplot(object): class
79 command = subprocess.Popen(['gnuplot'], stdin=subprocess.PIPE)
90 subprocess.Popen(['gnuplot'], stdin=subprocess.PIPE)
92 print('you can install "gnuplot" to generate plots automatically')
95 with gnuplot() as plot:
/aosp_15_r20/external/cronet/third_party/re2/src/benchlog/
H A Dbenchplot.py8 class gnuplot(object): class
79 command = subprocess.Popen(['gnuplot'], stdin=subprocess.PIPE)
90 subprocess.Popen(['gnuplot'], stdin=subprocess.PIPE)
92 print('you can install "gnuplot" to generate plots automatically')
95 with gnuplot() as plot:
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/benches-disabled/
DREADME.md8 [Gnuplot](http://www.gnuplot.info/) is required for graph generation. If gnuplot is not installed,…
/aosp_15_r20/external/blktrace/doc/
H A Dbno_plot.127 bno_plot utilizes gnuplot to generate a 3D plot of the block number output from
36 To use this utility, the gnuplot package needs to be installed.
38 To exit the plotter, enter 'quit' or ^D at the 'gnuplot> ' prompt.
63 btt (1), gnuplot (1), blktrace (8), blkparse (1), verify_blkparse (1), blkrawverify (1)
/aosp_15_r20/external/rust/android-crates-io/crates/criterion-plot/
DCONTRIBUTING.md27 You'll probably want to install [gnuplot](http://www.gnuplot.info/) as well. See the gnuplot websit…
/aosp_15_r20/external/blktrace/btt/
H A Dbno_plot.py28 Utilizes gnuplot to generate a 3D plot of the block number output
38 To exit the plotter, enter 'quit' or ^D at the 'gnuplot> ' prompt.
117 cmd = 'gnuplot %s/plot.cmds -' % tmpdir

1234