Skip to content

Commit

Permalink
compiler: Remove post-rebase redundant meth
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioLuporini committed Oct 9, 2023
1 parent 83d13c7 commit 7190cb1
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions devito/ir/support/properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,6 @@ def is_parallel(self, dims):
return any(len(self[d] & {PARALLEL, PARALLEL_INDEP}) > 0
for d in as_tuple(dims))

def is_parallel_atomic(self, dims):
return any(len(self[d] & {PARALLEL_IF_ATOMIC}) > 0 for d in as_tuple(dims))

def is_parallel_relaxed(self, dims):
return any(len(self[d] & PARALLELS) > 0 for d in as_tuple(dims))

Expand Down

0 comments on commit 7190cb1

Please sign in to comment.