Skip to content

Commit 0c985c7

Browse files
committed
Disable saving some graphs
most of micro-native micro:attribute-access-super
1 parent 26c0566 commit 0c985c7

11 files changed

+11
-11
lines changed

graalpython/com.oracle.graal.python.benchmarks/python/micro/attribute-access-super.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def get_super(self):
6363
return super()
6464

6565

66-
# igv: function_root_do_stuff_at
66+
# ~igv~: function_root_do_stuff_at
6767
def do_stuff(bar):
6868
foobar = bar.get_super()
6969
for i in range(50000):

graalpython/com.oracle.graal.python.benchmarks/python/micro/c-call-classmethod.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
ccompile("c_classmethod", code)
129129
from c_classmethod import NativeCustomType
130130

131-
# igv: function_root_count_at
131+
# ~igv~: function_root_count_at
132132
def count(num):
133133
total = 0
134134
for i in range(num):

graalpython/com.oracle.graal.python.benchmarks/python/micro/c-call-method.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
ccompile("c_method_module", code)
145145
from c_method_module import NativeCustomType
146146

147-
# igv: function_root_count_at
147+
# ~igv~: function_root_count_at
148148
def count(num):
149149
print("###### NUM: " + str(num))
150150
obj = NativeCustomType()

graalpython/com.oracle.graal.python.benchmarks/python/micro/c-instantiate-large.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
ccompile("c_instantiation", code)
123123
import c_instantiation
124124

125-
# igv: function_root_iterate_list_at
125+
# ~igv~: function_root_iterate_list_at
126126
def iterate_list(num):
127127
types = []
128128
for t in range(num):

graalpython/com.oracle.graal.python.benchmarks/python/micro/c-issubtype-polymorphic-forced-to-native.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
ccompile("c_classmethod", code)
132132
from c_classmethod import NativeCustomType
133133

134-
# igv: function_root_count_at
134+
# ~igv~: function_root_count_at
135135
def count(num):
136136
total = 0
137137
classes = [str, object, type]

graalpython/com.oracle.graal.python.benchmarks/python/micro/c-issubtype-polymorphic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
class X():
132132
pass
133133

134-
# igv: function_root_count_at
134+
# ~igv~: function_root_count_at
135135
def count(num):
136136
total = 0
137137
classes = [str, object, type, dict, list, X]

graalpython/com.oracle.graal.python.benchmarks/python/micro/c-magic-bool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
ccompile("c_magic_bool_module", code)
184184
import c_magic_bool_module
185185

186-
# igv: function_root_count_at
186+
# ~igv~: function_root_count_at
187187
def count(num):
188188
idxObj = c_magic_bool_module.NativeMagicMethods()
189189
cnt_true = 0

graalpython/com.oracle.graal.python.benchmarks/python/micro/c-magic-iter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@
240240
ccompile("c_custom_iterable_module", code)
241241
import c_custom_iterable_module
242242

243-
# igv: function_root_count_at
243+
# ~igv~: function_root_count_at
244244
def count(num):
245245
idxObj = c_custom_iterable_module.NativeCustomIterable(num % 11)
246246
for t in range(num):

graalpython/com.oracle.graal.python.benchmarks/python/micro/c_arith-binop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
from c_arith_binop_module import FloatSubclass
107107

108108

109-
# igv: function_root_docompute_at
109+
# ~igv~: function_root_docompute_at
110110
def docompute(num):
111111
for i in range(num):
112112
sum_ = FloatSubclass(0.0)

graalpython/com.oracle.graal.python.benchmarks/python/micro/c_arith_binop_2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
from c_arith_binop_module import FloatSubclass
196196

197197

198-
# igv: function_root_docompute_at
198+
# ~igv~: function_root_docompute_at
199199
def docompute(num):
200200
for i in range(num):
201201
sum_ = FloatSubclass(0.0)

0 commit comments

Comments
 (0)