From f2c506b03d881f77d2d8ab23dc5804fe08c26cda Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 6 Dec 2016 16:46:52 +0100 Subject: Add a script example to run and upload performance tests --- scripts/eigen_monitor_perf.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 scripts/eigen_monitor_perf.sh (limited to 'scripts') diff --git a/scripts/eigen_monitor_perf.sh b/scripts/eigen_monitor_perf.sh new file mode 100755 index 000000000..27aa48421 --- /dev/null +++ b/scripts/eigen_monitor_perf.sh @@ -0,0 +1,18 @@ +#!/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" + +$EIGEN_SOURCE_PATH/bench/perf_monitoring/gemm/runall.sh $* + +# (the '/' at the end of path is very important, see rsync documentation) +rsync -az --no-p --delete $EIGEN_SOURCE_PATH/bench/perf_monitoring/gemm/haswell-fma-*.png $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; } -- cgit v1.2.3