summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-05-28 10:09:57 -0700
committerGitHub <noreply@github.com>2024-05-28 10:09:57 -0700
commitf9ce00bd1f2457f5d2779d122199251978c7f851 (patch)
tree612311f08b55d4b6da287d6a23970deadd10940f
parent9b61eb3ab9c9f7d87140acf8a0c43c5b965773dc (diff)
downloadbinaryen-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-xscripts/fuzz_opt.py7
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()