Merge pull request #5570 from SparkiDev/sp_noasm

SP: config option to force no asm
This commit is contained in:
David Garske
2022-09-08 07:49:24 -07:00
committed by GitHub

View File

@ -6497,6 +6497,10 @@ do
ENABLED_SP_ASM=yes
;;
noasm)
ENABLED_SP_ASM=no
;;
*)
AC_MSG_ERROR([Invalid choice of Single Precision length in bits [256, 384, 521, 1024, 2048, 3072, 4096]: $ENABLED_SP.])
break;;