Skip to content

Commit

Permalink
fix row->column major conversion again
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonLydike authored and PapyChacal committed Oct 21, 2023
1 parent 2079b9c commit 9e593b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devito/operator/xdsl_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def _make_interop_o(self):
def mpi_shape(self) -> tuple:
dist = self.functions[0].grid.distributor
# reverse topology for row->column major
return tuple(reversed(dist.topology)), dist.myrank
return dist.topology, dist.myrank

def _jit_compile(self):
"""
Expand Down

0 comments on commit 9e593b0

Please sign in to comment.