mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-02 02:52:40 +00:00
54e93db207
not reliable yet
17 lines
250 B
Bash
Executable file
17 lines
250 B
Bash
Executable file
#! /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"
|