Blame view
utils/plot_pp.sh
259 Bytes
1b1e928cc initial import of... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/bash if [ $# -ne 1 -o ! -d "$1" ]; then echo "Usage: $0 <results directory>" exit 1 fi RESULTS="$1" PLOT_DIR="$(pwd)/" ruby "utils/pp_perfs.rb" "$RESULTS" cd $RESULTS echo "Plotting performances for $RESULTS" gnuplot $PLOT_DIR/pp_perfs.plt |