https://github.com/linbox-team/fflas-ffpack
Raw File
Tip revision: 2e21bee73a0d28a66b1c7134516406826c1259e7 authored by Clement Pernet on 21 June 2017, 15:24:42 UTC
fix test-utils.h folder
Tip revision: 2e21bee
tune_fgemm.sh
#!/bin/sh
echo =================================================
echo ========= FFLAS-FFPACK fgemm Autotuning =========
echo =================================================
echo 
echo "== Tuning fgemm over Modular<double> =="
./winograd-modular-double 2> fgemm-thresholds.h  | tee fgemm-autotune.log
echo 
echo "== Tuning fgemm over Modular<float> =="
./winograd-modular-float 2>>  fgemm-thresholds.h  | tee -a fgemm-autotune.log
echo 
echo "== Tuning fgemm over ModularBalanced<double> =="
./winograd-modularbalanced-double 2>> fgemm-thresholds.h  | tee -a fgemm-autotune.log
echo 
echo "== Tuning fgemm over ModularBalanced<float> =="
./winograd-modularbalanced-float 2>>  fgemm-thresholds.h  | tee -a fgemm-autotune.log
back to top