aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-12-07 14:23:49 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-12-07 14:23:49 +0100
commit3855ab472f1bd523ba51122b731c4336182a3268 (patch)
treef2bcdd3797e0ce8c28b591aee836c4ef81ee9a78 /scripts
parent59a59fa8e725298613c55f01ef0c95c5e2e33707 (diff)
Cleanup file structure
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/eigen_monitor_perf.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/eigen_monitor_perf.sh b/scripts/eigen_monitor_perf.sh
index d4b3f82f0..39f8e7ecd 100755
--- a/scripts/eigen_monitor_perf.sh
+++ b/scripts/eigen_monitor_perf.sh
@@ -6,17 +6,17 @@
USER='ggael'
UPLOAD_DIR=perf_monitoring/ggaelmacbook26
EIGEN_SOURCE_PATH=$HOME/Eigen/eigen
-export PREFIX="haswell-fma-"
+export PREFIX="haswell-fma"
export CXX_FLAGS="-mfma -w"
####
-BENCH_PATH=$EIGEN_SOURCE_PATH/bench/perf_monitoring/gemm/
+BENCH_PATH=$EIGEN_SOURCE_PATH/bench/perf_monitoring/$PREFIX
PREVPATH=`pwd`
-cd $BENCH_PATH && ./runall.sh "Haswell 2.6GHz, FMA, Apple's clang" $*
+cd $EIGEN_SOURCE_PATH/bench/perf_monitoring && ./runall.sh "Haswell 2.6GHz, FMA, Apple's clang" $*
cd $PREVPATH
-ALLFILES="$BENCH_PATH/$PREFIX*.png $BENCH_PATH/$PREFIX*.html $BENCH_PATH/index.html $BENCH_PATH/s1.js $BENCH_PATH/s2.js"
+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; }