From b1fcb66119fadd8148f2ac039907e1f7f1c6bd3c Mon Sep 17 00:00:00 2001 From: Fabio Luporini Date: Fri, 6 Oct 2023 13:25:25 +0000 Subject: [PATCH] compiler: Remove post-rebase redundant meth --- devito/ir/support/properties.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/devito/ir/support/properties.py b/devito/ir/support/properties.py index a7113a48333..e9317ba1be6 100644 --- a/devito/ir/support/properties.py +++ b/devito/ir/support/properties.py @@ -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))