From 992468376b0cce76410be55bf3fbcacad141b7db Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Thu, 29 Aug 2024 08:48:20 -0700 Subject: Ignore fp16 in the fuzzer (#6881) Add the feature flag in V8 invocations, but also disable the feature as it isn't quite ready yet. --- scripts/fuzz_opt.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts/fuzz_opt.py') 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 -- cgit v1.2.3