https://github.com/linbox-team/fflas-ffpack
Raw File
Tip revision: 690eff7824eab13328a71b514e2ae85b2f5300cf authored by Clément Pernet on 16 December 2021, 16:37:23 UTC
add a regression test over Z/2Z
Tip revision: 690eff7
tune_ftrtri.sh
#!/bin/bash
echo =================================================
echo ========= FFLAS-FFPACK ftrtri Autotuning ========
echo =================================================
echo 
(./ftrtri > ftrtri-threshold.h) 2>&1 | tee ftrtri-autotune.log
val=${PIPESTATUS[0]}; if test ${val} -ne 0 ; then exit ${val}; fi
back to top