Skip to content

Commit

Permalink
ci: Retry
Browse files Browse the repository at this point in the history
  • Loading branch information
georgebisbas committed Nov 22, 2023
1 parent 2b38651 commit 951f774
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions devito/operator/xdsl_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ def _make_interop_o(self):
@property
def mpi_shape(self) -> tuple:
dist = self.functions[0].grid.distributor

# reverse topology for row->column major
return dist.topology, dist.myrank

Expand All @@ -126,11 +127,7 @@ def _jit_compile(self):
It is ensured that JIT compilation will only be performed once per
Operator, reagardless of how many times this method is invoked.
"""

# This is old leftover code from previous inttegration efforts
# TODROP: ccode = transform_devito_xdsl_string(self)
# TODROP: self.ccode = ccode


with self._profiler.timer_on('jit-compile'):
is_mpi = MPI.Is_initialized()
is_gpu = os.environ.get("DEVITO_PLATFORM", None) == 'nvidiaX'
Expand Down

0 comments on commit 951f774

Please sign in to comment.