Skip to content

Commit 30b068c

Browse files
authored
build: update GT4Py (loop layout fixes) (#410)
1 parent c47852d commit 30b068c

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

ndsl/stencils/testing/test_translate.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -315,14 +315,12 @@ def test_sequential_savepoint(
315315

316316
def get_communicator(comm, layout):
317317
partitioner = CubedSpherePartitioner(TilePartitioner(layout))
318-
communicator = CubedSphereCommunicator(comm, partitioner)
319-
return communicator
318+
return CubedSphereCommunicator(comm, partitioner)
320319

321320

322321
def get_tile_communicator(comm, layout):
323322
partitioner = TilePartitioner(layout)
324-
communicator = TileCommunicator(comm, partitioner)
325-
return communicator
323+
return TileCommunicator(comm, partitioner)
326324

327325

328326
@pytest.mark.parallel

0 commit comments

Comments
 (0)