diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-07-03 07:37:12 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-07-03 08:13:09 +0200 |
commit | 88534ba623421c956d8ffcda2d27f41d704d15ef (patch) | |
tree | fccc55245aec3f7381cd525a1355568e10ea37f4 /eigen/scripts | |
parent | 3ee09beb3f0458fbeb0b0e816f854b9d5b406e6b (diff) |
update eigen
Diffstat (limited to 'eigen/scripts')
-rw-r--r-- | eigen/scripts/eigen_monitor_perf.sh | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/eigen/scripts/eigen_monitor_perf.sh b/eigen/scripts/eigen_monitor_perf.sh deleted file mode 100644 index 39f8e7e..0000000 --- a/eigen/scripts/eigen_monitor_perf.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -# This is a script example to automatically update and upload performance unit tests. -# The following five variables must be adjusted to match your settings. - -USER='ggael' -UPLOAD_DIR=perf_monitoring/ggaelmacbook26 -EIGEN_SOURCE_PATH=$HOME/Eigen/eigen -export PREFIX="haswell-fma" -export CXX_FLAGS="-mfma -w" - -#### - -BENCH_PATH=$EIGEN_SOURCE_PATH/bench/perf_monitoring/$PREFIX -PREVPATH=`pwd` -cd $EIGEN_SOURCE_PATH/bench/perf_monitoring && ./runall.sh "Haswell 2.6GHz, FMA, Apple's clang" $* -cd $PREVPATH - -ALLFILES="$BENCH_PATH/*.png $BENCH_PATH/*.html $BENCH_PATH/index.html $BENCH_PATH/s1.js $BENCH_PATH/s2.js" - -# (the '/' at the end of path is very important, see rsync documentation) -rsync -az --no-p --delete $ALLFILES $USER@ssh.tuxfamily.org:eigen/eigen.tuxfamily.org-web/htdocs/$UPLOAD_DIR/ || { echo "upload failed"; exit 1; } - -# fix the perm -ssh $USER@ssh.tuxfamily.org "chmod -R g+w /home/eigen/eigen.tuxfamily.org-web/htdocs/perf_monitoring" || { echo "perm failed"; exit 1; } |