https://github.com/linbox-team/fflas-ffpack
Raw File
Tip revision: abbfb8e6977e242d4304672c74f8b5afd35ff470 authored by Clément Pernet on 22 March 2021, 16:49:34 UTC
Revert "add some const tags, which are needed"
Tip revision: abbfb8e
tune_fsyrk.sh
#!/bin/bash
echo =================================================
echo ========= FFLAS-FFPACK fsyrk Autotuning =========
echo =================================================
echo 
(./fsyrk > fsyrk-threshold.h) 2>&1 | tee fsyrk-autotune.log
val=${PIPESTATUS[0]}; if test ${val} -ne 0 ; then exit ${val}; fi
back to top