https://github.com/linbox-team/fflas-ffpack
Raw File
Tip revision: 21d0314f2760e36517bde09b77c23ddb4ddd9dc5 authored by Clément Pernet on 31 August 2023, 12:09:33 UTC
new schedule for Strassen Winograd C=AB merging 4 additions within calls to fgemm with beta!=0
Tip revision: 21d0314
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