Skip to content

Commit f5c5de4

Browse files
committed
remove bytecode/ast interpreter options for launcher graalpy
1 parent 2488f1c commit f5c5de4

File tree

1 file changed

+1
-19
lines changed

1 file changed

+1
-19
lines changed

mx.graalpython/mx_graalpython_python_benchmarks.py

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -476,25 +476,7 @@ def register_python_benchmarks():
476476
python_vm_registry.add_vm(PyPyVm())
477477
python_vm_registry.add_vm(Python3Vm())
478478
for config_name, options, priority in [
479-
("launcher", [], 10),
480-
(
481-
"bytecode",
482-
[
483-
"--experimental-options",
484-
"--EnableBytecodeInterpreter=true",
485-
"--DisableFrozenModules=true",
486-
],
487-
80,
488-
),
489-
(
490-
"ast",
491-
[
492-
"--experimental-options",
493-
"--EnableBytecodeInterpreter=false",
494-
"--DisableFrozenModules=true",
495-
],
496-
100,
497-
),
479+
("launcher", [], 100),
498480
]:
499481
python_vm_registry.add_vm(GraalPyVm(config_name, options), SUITE, priority)
500482

0 commit comments

Comments
 (0)