diff options
author | Alon Zakai <azakai@google.com> | 2024-05-28 10:09:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 10:09:57 -0700 |
commit | f9ce00bd1f2457f5d2779d122199251978c7f851 (patch) | |
tree | 612311f08b55d4b6da287d6a23970deadd10940f | |
parent | 9b61eb3ab9c9f7d87140acf8a0c43c5b965773dc (diff) | |
download | binaryen-f9ce00bd1f2457f5d2779d122199251978c7f851.tar.gz binaryen-f9ce00bd1f2457f5d2779d122199251978c7f851.tar.bz2 binaryen-f9ce00bd1f2457f5d2779d122199251978c7f851.zip |
Fuzzer: Stop testing with TurboFan as Turboshaft is rolling out and is faster (#6623)
-rwxr-xr-x | scripts/fuzz_opt.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index da221b94e..2a97af64a 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -856,12 +856,6 @@ class CompareVMs(TestCaseHandler): def run(self, wasm): return super(D8Turboshaft, self).run(wasm, extra_d8_flags=['--no-liftoff', '--turboshaft-wasm', '--turboshaft-wasm-instruction-selection-staged']) - class D8TurboFan(D8): - name = 'd8_turbofan' - - def run(self, wasm): - return super(D8TurboFan, self).run(wasm, extra_d8_flags=['--no-liftoff']) - class Wasm2C: name = 'wasm2c' @@ -960,7 +954,6 @@ class CompareVMs(TestCaseHandler): D8(), D8Liftoff(), D8Turboshaft(), - D8TurboFan(), # FIXME: Temprorary disable. See issue #4741 for more details # Wasm2C(), # Wasm2C2Wasm() |