File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ def get_optimized_kernel(self, max_ntargets_in_one_box):
223223 knl = lp .tag_inames (knl , {"dummy" : "l.0" })
224224 knl = lp .set_temporary_address_space (knl , "coeffs" , lp .AddressSpace .LOCAL )
225225 knl = lp .set_options (knl ,
226- enforce_variable_access_ordered = "no_check" , write_code = True )
226+ enforce_variable_access_ordered = "no_check" , write_code = False )
227227
228228 for transform in optimizations :
229229 knl = transform (knl )
@@ -245,7 +245,6 @@ def get_optimized_kernel(self, max_ntargets_in_one_box):
245245 knl = lp .remove_predicates_from_insn (knl ,
246246 frozenset ([prim .Variable ("run_itgt" )]), match )
247247
248- print (knl )
249248 return knl
250249
251250 def __call__ (self , queue , ** kwargs ):
Original file line number Diff line number Diff line change @@ -327,7 +327,6 @@ def get_idx(v):
327327 insns .append (insn )
328328 optimizations += [
329329 lambda knl : lp .tag_inames (knl , {
330- #"e2p_dummy": "l.0",
331330 "e2p_iorder1" : "l.0" ,
332331 f"e2p_{ x0 } _outer" : "unr" ,
333332 f"e2p_{ x0 } _inner" : "unr" ,
You can’t perform that action at this time.
0 commit comments