File tree Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ def trans(psyir):
126126 region_directive_trans = omp_parallel_trans ,
127127 loop_directive_trans = omp_loop_trans ,
128128 collapse = False ,
129- privatise_arrays = (not NEMOV4 and
130- psyir .name not in PRIVATISATION_ISSUES ),
129+ # privatise_arrays=(not NEMOV4 and
130+ # psyir.name not in PRIVATISATION_ISSUES),
131131 enable_reductions = REPRODUCIBLE ,
132132 )
Original file line number Diff line number Diff line change 8181
8282NEMOV5_EXCLUSIONS = []
8383
84- NEMOV4_EXCLUSIONS = [
85- "dynspg_ts.f90" ,
86- "tranxt.f90" ,
87- ]
88-
8984SKIP_FOR_PERFORMANCE = [
9085 "iom.f90" ,
9186 "iom_nf90.f90" ,
@@ -172,8 +167,6 @@ def trans(psyir):
172167 # insert profiling hooks later on.
173168 if psyir .name in SKIP_FOR_PERFORMANCE :
174169 continue
175- if NEMOV4 and psyir .name in NEMOV4_EXCLUSIONS :
176- continue
177170 if not NEMOV4 and psyir .name in NEMOV5_EXCLUSIONS :
178171 continue
179172 # ICE routines do not perform well on GPU, so we skip them
You can’t perform that action at this time.
0 commit comments