Skip to content

Commit df12ff6

Browse files
committed
Test removing some exclusions
1 parent 0b22100 commit df12ff6

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

examples/nemo/scripts/omp_cpu_trans.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
)

examples/nemo/scripts/omp_gpu_trans.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,6 @@
8181

8282
NEMOV5_EXCLUSIONS = []
8383

84-
NEMOV4_EXCLUSIONS = [
85-
"dynspg_ts.f90",
86-
"tranxt.f90",
87-
]
88-
8984
SKIP_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

0 commit comments

Comments
 (0)