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