diff options
-rwxr-xr-x | scripts/fuzz_opt.py | 3 | ||||
-rw-r--r-- | scripts/test/shared.py | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index e06e13b72..665ae7cbd 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -49,7 +49,8 @@ assert sys.version_info.major == 3, 'requires Python 3!' # parameters # feature options that are always passed to the tools. -CONSTANT_FEATURE_OPTS = ['--all-features'] +# XXX fp16 is not yet stable, remove from here when it is +CONSTANT_FEATURE_OPTS = ['--all-features', '--disable-fp16'] INPUT_SIZE_MIN = 1024 INPUT_SIZE_MEAN = 40 * 1024 diff --git a/scripts/test/shared.py b/scripts/test/shared.py index 4ca065d03..624a2f19a 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -257,6 +257,7 @@ V8_OPTS = [ '--experimental-wasm-compilation-hints', '--experimental-wasm-memory64', '--experimental-wasm-stringref', + '--experimental-wasm-fp16', ] # external tools |