#!/bin/sh echo ================================================= echo ========= FFLAS-FFPACK fgemm Autotuning ========= echo ================================================= echo echo "== Tuning fgemm over Modular ==" ./winograd-modular-double 2> fgemm-thresholds.h | tee fgemm-autotune.log echo echo "== Tuning fgemm over Modular ==" ./winograd-modular-float 2>> fgemm-thresholds.h | tee -a fgemm-autotune.log echo echo "== Tuning fgemm over ModularBalanced ==" ./winograd-modularbalanced-double 2>> fgemm-thresholds.h | tee -a fgemm-autotune.log echo echo "== Tuning fgemm over ModularBalanced ==" ./winograd-modularbalanced-float 2>> fgemm-thresholds.h | tee -a fgemm-autotune.log