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
julia> using EzXML
julia> EzXML.XML_GLOBAL_ERROR_STACK
EzXML.XMLError[]
julia> using MPI
julia> EzXML.XML_GLOBAL_ERROR_STACK
EzXML.XMLError[]
julia> MPI.Init()
MPI.ThreadLevel(2)
julia> EzXML.XML_GLOBAL_ERROR_STACK
1-element Vector{EzXML.XMLError}:
EzXML.XMLError(1, 5, "Extra content at the end of the document", 3, 183)
Then everything is in problems.
I ran it on a Utuntu 20.04 WSL in Windows11. If I use the Julia MPI,there will be no problem. However, if I use the system MPI with using MPIPreferences; MPIPreferences.use_system_binary(), then the above error occurs. I'm using MPI v0.20.18. The system MPI info is
I'm using Julia v1.9.1. Just use the default v1.9 environment, add MPI MPIPreferences EzXML, using MPIPreferences; MPIPreferences.use_system_binary(), then restart Julia, then the error occurs.
The text was updated successfully, but these errors were encountered:
Under some circumstances, a MWE:
Then everything is in problems.
I ran it on a Utuntu 20.04 WSL in Windows11. If I use the Julia MPI,there will be no problem. However, if I use the system MPI with
using MPIPreferences; MPIPreferences.use_system_binary()
, then the above error occurs. I'm usingMPI v0.20.18
. The system MPI info isI'm using Julia v1.9.1. Just use the default v1.9 environment,
add MPI MPIPreferences EzXML
,using MPIPreferences; MPIPreferences.use_system_binary()
, then restart Julia, then the error occurs.The text was updated successfully, but these errors were encountered: