You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ACDC PARALLEL TARGET [...] works but not ACDC PARALLEL,TARGET [...] (see fcode2 vs fcode3)
2)loki doesn't recognize curly braces to define pragma region (see fcode2 vs fcode4)
from loki import *
fcode1 = """
SUBROUTINE TEST
!$loki parallel TARGET=OpenMP/OpenMPSingleColumn/OpenACCSingleColumn,NAME=CPPHINP
PRINT *, "loki"
!$loki end parallel
END SUBROUTINE"""
routine = Sourcefile.from_source(fcode1)["TEST"]
with pragma_regions_attached(routine):
for region in FindNodes(PragmaRegion).visit(routine.body):
print(f"{region=}")
print("region = ", fgen(region.body))
assert fgen(region.body) == 'PRINT *, "loki"'
fcode2 = """
SUBROUTINE TEST
!$ACDC PARALLEL TARGET=OpenMP/OpenMPSingleColumn/OpenACCSingleColumn,NAME=CPPHINP
PRINT *, "ACDC_endparallel"
!$ACDC END PARALLEL
END SUBROUTINE"""
routine = Sourcefile.from_source(fcode2)["TEST"]
with pragma_regions_attached(routine):
for region in FindNodes(PragmaRegion).visit(routine.body):
print(f"{region=}")
print("region = ", fgen(region.body))
assert fgen(region.body) == 'PRINT *, "ACDC_endparallel"'
fcode3 = """
SUBROUTINE TEST
!$ACDC PARALLEL,TARGET=OpenMP/OpenMPSingleColumn/OpenACCSingleColumn,NAME=CPPHINP
PRINT *, "ACDC_coma"
!$ACDC END PARALLEL
END SUBROUTINE"""
routine = Sourcefile.from_source(fcode3)["TEST"]
with pragma_regions_attached(routine):
for region in FindNodes(PragmaRegion).visit(routine.body):
print(f"{region=}")
print("region = ", fgen(region.body))
assert fgen(region.body) == 'PRINT *, "ACDC_coma"'
fcode4 = """
SUBROUTINE TEST
!$ACDC PARALLEL TARGET=OpenMP/OpenMPSingleColumn/OpenACCSingleColumn,NAME=CPPHINP {
PRINT *, "ACDC_curly_brace"
!$ACDC }
END SUBROUTINE"""
routine = Sourcefile.from_source(fcode4)["TEST"]
with pragma_regions_attached(routine):
for region in FindNodes(PragmaRegion).visit(routine.body):
print(f"{region=}")
print("region = ", fgen(region.body))
assert fgen(region.body) == 'PRINT *, "ACDC_curly_brace"'
The text was updated successfully, but these errors were encountered:
Hi @ecossevin , apologies for the delay. I started to look into this, and then realised where the hidden complexities come from, and had to drop it due to time constraints. The basic problem with this notation is that our PragmaRegion matching is based on explicit keyword matching between start and end-pragma, so that we can support nesting different pragma types.
For example, we can support
!$loki foo
...
!$loki bar
...
!$loki end bar
!$loki end foo
Unfortunately, re-writing the logic itself to match by order, rather than keyword is tedious. We, of course, accept PRs if you manage to keep this backward compatible yourself. Is there any specific reason why this non-standard pragma notation is required over more standard (eg. similar to OpenACC/OpenMP) notation based on 'end' keywords and spaces over commas?
2)loki doesn't recognize curly braces to define pragma region (see fcode2 vs fcode4)
The text was updated successfully, but these errors were encountered: