Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/src/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ with:
$ mpiexecjl --project=/path/to/project -n 20 julia script.jl
```

!!! note "Juliaup"
If you use `juliaup` as a manager for your `julia` installation and you want to use a non-default channel with `mpiexecjl`,
you need to use the environment variable `JULIAUP_CHANNEL` instead of using the `+` syntax.

```shell
JULIAUP_CHANNEL=1.12 mpiexecjl --project=/path/to/project -n 20 julia script.jl
```

## GPU-aware MPI support

If your MPI implementation has been compiled with CUDA or ROCm support, then `CUDA.CuArray`s (from
Expand Down
Loading