Skip to content

Commit

Permalink
More tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiManyer committed Oct 18, 2023
1 parent ddc223c commit fc3d155
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions test/mpi/OctreeDistributedDiscreteModelsNoEnvTests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,14 @@ import .OctreeDistributedDiscreteModelsTests as TestModule

MPI.Init()

# 2D
with_mpi() do distribute
TestModule.run(distribute,(2,2),[4,2])
end
TestModule.run(distribute,4,(2,2),[4,2])
end

# 3D
with_mpi() do distribute
TestModule.run(distribute,4,(2,2,2),[4,2])
end

MPI.Finalize()

0 comments on commit fc3d155

Please sign in to comment.