Skip to content

Commit 64d365f

Browse files
committed
re-enable commented out micro benchmarks
1 parent 70ec3d9 commit 64d365f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

mx.graalpython/mx_graalpython_bench_param.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
2323
# OF THE POSSIBILITY OF SUCH DAMAGE.
2424
import os
25+
2526
import mx
2627

2728
py = ".py"
@@ -101,13 +102,12 @@ def _compile_interop():
101102
# the python micro benchmarks
102103
#
103104
# ----------------------------------------------------------------------------------------------------------------------
104-
# TODO: commented out benchmarks are probably too slow atm, revisit this at a later time once performance picks up
105105
pythonMicroBenchmarks = {
106106
'arith-binop': [],
107107
'attribute-access': [],
108108
'attribute-access-polymorphic': [],
109-
# 'attribute-bool': [],
110-
# 'boolean-logic': [],
109+
'attribute-bool': [],
110+
'boolean-logic': [],
111111
'builtin-len': [],
112112
'builtin-len-tuple': [],
113113
'call-method-polymorphic': [],
@@ -121,11 +121,11 @@ def _compile_interop():
121121
'list-indexing': [],
122122
'list-iterating': [],
123123
'math-sqrt': [],
124-
# 'object-allocate': [],
125-
# 'object-layout-change': [],
126-
# 'special-add': [],
127-
# 'special-add-int': [],
128-
# 'special-len': [],
124+
'object-allocate': [],
125+
'object-layout-change': [],
126+
'special-add': [],
127+
'special-add-int': [],
128+
'special-len': [],
129129
}
130130

131131
# XXX: testing

0 commit comments

Comments
 (0)