https://github.com/linbox-team/fflas-ffpack
Raw File
Tip revision: 23928f90cad1c2e96a868a737606fea0191307a1 authored by Dima Pasechnik on 09 May 2020, 11:48:59 UTC
remove 1st and last file in .pc file (#308)
Tip revision: 23928f9
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