This commit is contained in:
2025-07-12 12:17:44 +03:00
parent c759f60ff7
commit 792e1b937a
3507 changed files with 492613 additions and 0 deletions

17
fftw-3.3.10/support/twovers.sh Executable file
View File

@@ -0,0 +1,17 @@
#! /bin/sh
# wrapper to generate two codelet versions, with and without
# fma
genfft=$1
shift
echo "#if defined(ARCH_PREFERS_FMA) || defined(ISA_EXTENSION_PREFERS_FMA)"
echo
$genfft -fma $*
echo
echo "#else"
echo
$genfft $*
echo
echo "#endif"