You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently trying to profile the MPI communication of Trixi.jl, which uses T8code.jl, which provides julia bindings to the t8code meshing library.
Using nsys, I noticed that MPI calls made by t8code are not captured (same with Extrae.jl). @vchuravy kindly pointed me to #444.
At the moment I am not able to solve this issue on my own, but maybe you have some ideas what I could try?
I am currently trying to profile the MPI communication of Trixi.jl, which uses T8code.jl, which provides julia bindings to the t8code meshing library.
Using
nsys
, I noticed that MPI calls made by t8code are not captured (same withExtrae.jl
).@vchuravy kindly pointed me to #444.
At the moment I am not able to solve this issue on my own, but maybe you have some ideas what I could try?
Here is how the issue can be reproduced:
Start with a Julia project, add
MPI
andT8code
, get https://github.com/DLR-AMR/T8code.jl/blob/main/examples/t8_step2_uniform_forest.jl, and runnsys
:The trace contains
MPI_Init_thread
andMPI_Finalize
only, which are the calls made throughMPI.jl
(https://github.com/DLR-AMR/T8code.jl/blob/bd7525f9022bc9dbb6fa1f963acfc0fae3a3813e/examples/t8_step2_uniform_forest.jl#L108)The same example is available as C++ code as well: https://github.com/DLR-AMR/t8code/blob/main/tutorials/general/t8_step2_uniform_forest.cxx
Running
nsys
I additionally see some
MPI_Allreduce
andMPI_Allgather
calls in the trace.The text was updated successfully, but these errors were encountered: