I want to call an MPI exectable from Julia in a Jupyter notebook.
Doing
cmd = Cmd(`mpiexec -np 4 name_of_executable`)
run(cmd)
creates 4 processes, but they all use 25% cpu on one core. Is there a way to have it run 100% on four separate cores?
I want to call an MPI exectable from Julia in a Jupyter notebook.
Doing
cmd = Cmd(`mpiexec -np 4 name_of_executable`)
run(cmd)
creates 4 processes, but they all use 25% cpu on one core. Is there a way to have it run 100% on four separate cores?