https://github.com/linbox-team/fflas-ffpack
Raw File
Tip revision: 116b5add4be78a9038ddd2aaeb6a3923b83e9900 authored by Clement Pernet on 14 October 2016, 12:15:12 UTC
merge with master including the new GaussJordan with Tile Rec basecase
Tip revision: 116b5ad
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