@@ -48,18 +48,18 @@ function info {
48
48
49
49
function bench-py-hotspot {
50
50
info " benchmarking GRAALPYTHON with HOTSPOT"
51
- mx --dynamicimports /graal-enterprise benchmark micro-graalpython:* -- --python-vm graalpython --python-vm-config default --jvm server --jvm-config default
51
+ mx --dynamicimports /compiler benchmark micro-graalpython:* -- --python-vm graalpython --python-vm-config default --jvm server --jvm-config default
52
52
}
53
53
54
54
function bench-py-graal-core {
55
55
info " benchmarking GRAALPYTHON with GRAAL-CORE"
56
- mx --dynamicimports /graal-enterprise benchmark micro-graalpython:* -- --python-vm graalpython --python-vm-config default --jvm server --jvm-config graal-core
56
+ mx --dynamicimports /compiler benchmark micro-graalpython:* -- --python-vm graalpython --python-vm-config default --jvm server --jvm-config graal-core
57
57
}
58
58
59
- function bench-py-graal-enterprise {
60
- info " benchmarking GRAALPYTHON with GRAAL-ENTERPRISE"
61
- mx --dynamicimports /graal-enterprise benchmark micro-graalpython:* -- --python-vm graalpython --python-vm-config default --jvm server --jvm-config graal-enterprise
62
- }
59
+ # function bench-py-graal-enterprise {
60
+ # info "benchmarking GRAALPYTHON with GRAAL-ENTERPRISE"
61
+ # mx --dynamicimports /compiler benchmark micro-graalpython:* -- --python-vm graalpython --python-vm-config default --jvm server --jvm-config graal-enterprise
62
+ # }
63
63
64
64
function bench-cpython {
65
65
info " benchmarking CPYTHON"
@@ -73,12 +73,11 @@ function bench-pypy {
73
73
74
74
75
75
76
- echo " If you are running this script for the first time, you may consider setting up your local env with <setup_bench_local.sh>"
77
-
78
- read -p " core, enterprise, hotspot, cpython, pypy? " vm
76
+ # read -p "core, enterprise, hotspot, cpython, pypy? " vm
77
+ read -p " core, hotspot, cpython, pypy? " vm
79
78
case ${vm} in
80
79
' core' ) bench-py-graal-core;;
81
- ' enterprise' ) bench-py-graal-enterprise;;
80
+ # 'enterprise') bench-py-graal-enterprise;;
82
81
' hotspot' ) bench-py-hotspot;;
83
82
' cpython' ) bench-cpython;;
84
83
' pypy' ) bench-pypy;;
0 commit comments