https://github.com/linbox-team/fflas-ffpack
Raw File
Tip revision: fabe430f5c65596703da1f8ad4d65a5e5d4dab2b authored by Clément Pernet on 02 December 2021, 08:44:38 UTC
setBits -> setBitsize for randiter
Tip revision: fabe430
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