-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dolfinx 0.9.0 #64
base: main
Are you sure you want to change the base?
Dolfinx 0.9.0 #64
Conversation
@pdiercks , Do you have any good ideas on how we can test the MPI functionality? Can we try to write a pytest case where we solve a distributed Problem with mesh_distr = df.mesh.create_unit_cube(MPI.COMM_WORLD,10,10,10)
mesh_local = df.mesh.create_unit_cube(MPI.COMM_SELF,10,10,10)
space_distr = df.fem.functionspace(mesh_distr, ("Lagrange",1))
space_local = df.fem.functionspace(mesh_local, ("Lagrange",1))
u_distr = df.fem.Function(space_distr)
u_local = df.fem.Function(space_local)
diff = u_distr - u_local |
I tried it. Does not work with different communicators. I will try https://gitlab.com/dglaeser/fieldcompare
|
This PR will add
[ ] Rewriting of material model tests to be compatible with MPIWe don't need that for one-element tests__del__
(https://github.com/FEniCS/dolfinx/blob/a547191a3c2765acd12aeadd0a3a66c0b99e83a9/python/dolfinx/nls/petsc.py#L44)Resolves #50, #47