eigen_monitor_perf.sh 1009 B

12345678910111213141516171819202122232425
  1. #!/bin/bash
  2. # This is a script example to automatically update and upload performance unit tests.
  3. # The following five variables must be adjusted to match your settings.
  4. USER='ggael'
  5. UPLOAD_DIR=perf_monitoring/ggaelmacbook26
  6. EIGEN_SOURCE_PATH=$HOME/Eigen/eigen
  7. export PREFIX="haswell-fma"
  8. export CXX_FLAGS="-mfma -w"
  9. ####
  10. BENCH_PATH=$EIGEN_SOURCE_PATH/bench/perf_monitoring/$PREFIX
  11. PREVPATH=$(pwd)
  12. cd $EIGEN_SOURCE_PATH/bench/perf_monitoring && ./runall.sh "Haswell 2.6GHz, FMA, Apple's clang" "$@"
  13. cd $PREVPATH || exit 1
  14. ALLFILES="$BENCH_PATH/*.png $BENCH_PATH/*.html $BENCH_PATH/index.html $BENCH_PATH/s1.js $BENCH_PATH/s2.js"
  15. # (the '/' at the end of path is very important, see rsync documentation)
  16. rsync -az --no-p --delete $ALLFILES $USER@ssh.tuxfamily.org:eigen/eigen.tuxfamily.org-web/htdocs/$UPLOAD_DIR/ || { echo "upload failed"; exit 1; }
  17. # fix the perm
  18. ssh $USER@ssh.tuxfamily.org "chmod -R g+w /home/eigen/eigen.tuxfamily.org-web/htdocs/perf_monitoring" || { echo "perm failed"; exit 1; }