We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
mpiexec()
https://github.com/JuliaParallel/MPI.jl/blob/master/docs/src/usage.md suggests using
mpiexec() do exe # MPI wrapper run(`$exe -n $n $(Base.julia_cmd()) [...]/01-hello.jl`) # alternatively: # p = run(ignorestatus(`...`)) # @test success(p) end
but this causes a deprecation warning (at least in Julia 1.9.3). The inline documentation says that
run(`$(mpiexec()) $arguments`)
is threadsafe and should be preferred.
The text was updated successfully, but these errors were encountered:
Would you mind opening a pull request?
Sorry, something went wrong.
docs: usage of mpiexec()
8217be9
Suggested fix for JuliaParallel#786
docs: usage of mpiexec() (#787)
3487da6
Suggested fix for #786
Successfully merging a pull request may close this issue.
https://github.com/JuliaParallel/MPI.jl/blob/master/docs/src/usage.md suggests using
but this causes a deprecation warning (at least in Julia 1.9.3). The inline documentation says that
is threadsafe and should be preferred.
The text was updated successfully, but these errors were encountered: