Skip to content

Commit 6ca78e0

Browse files
authored
link updates (#854)
1 parent 6bea63a commit 6ca78e0

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

docs/examples/05-job_schedule.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
# assigns one element to each worker to compute the operation.
44
# When the worker is finished, the root sends another element
55
# until each element is added 100
6-
# Inspired on
7-
# https://www.hpc.ntnu.no/ntnu-hpc-group/vilje/user-guide/software/mpi-and-mpi-io-training-tutorial/basic-mpi/job-queue
6+
# Inspired by https://www.hpc.ntnu.no/vilje/software/mpi-and-mpi-io-training-tutorial/
7+
# https://www.hpc.ntnu.no/vilje/software/mpi-and-mpi-io-training-tutorial/basic-mpi/job-queue/
8+
# an updated job_queue.c is available in the basic_mpi/04_job_queue/src subdirectory of
9+
# the extracted https://www.hpc.ntnu.no/wp-content/uploads/2019/09/mpiexamples.tar.gz
810

911
using MPI
1012

docs/src/configuration.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Configuration
22

33
By default, MPI.jl will download and link against the following MPI implementations:
4-
- [Microsoft MPI](https://docs.microsoft.com/en-us/message-passing-interface/microsoft-mpi) on Windows
4+
- [Microsoft MPI](https://learn.microsoft.com/en-us/message-passing-interface/microsoft-mpi) on Windows
55
- [MPICH](https://www.mpich.org/) on all other platforms
66

77
This is suitable for most single-node use cases, but for larger systems, such as HPC
@@ -32,9 +32,9 @@ standard or later. The following MPI implementations should work out-of-the-box
3232

3333
- [Open MPI](https://www.open-mpi.org/)
3434
- [MPICH](https://www.mpich.org/) (v3.1 or later)
35-
- [Intel MPI](https://software.intel.com/en-us/mpi-library)
36-
- [Microsoft MPI](https://docs.microsoft.com/en-us/message-passing-interface/microsoft-mpi)
37-
- [IBM Spectrum MPI](https://www.ibm.com/us-en/marketplace/spectrum-mpi)
35+
- [Intel MPI](https://www.intel.com/content/www/us/en/developer/tools/oneapi/mpi-library.html)
36+
- [Microsoft MPI](https://learn.microsoft.com/en-us/message-passing-interface/microsoft-mpi)
37+
- [IBM Spectrum MPI](https://www.ibm.com/products/spectrum-mpi)
3838
- [MVAPICH](https://mvapich.cse.ohio-state.edu/)
3939
- [Cray MPICH](https://docs.nersc.gov/development/compilers/wrappers/)
4040
- [Fujitsu MPI](https://www.fujitsu.com/global/about/resources/publications/technicalreview/2020-03/article07.html#cap-03)
@@ -163,7 +163,7 @@ run on a non-GPU enabled node without needing a separate `LocalPreferences.toml`
163163

164164
The following MPI implementations are provided as JLL packages and automatically obtained when installing MPI.jl:
165165

166-
- `MicrosoftMPI_jll`: [Microsoft MPI](https://docs.microsoft.com/en-us/message-passing-interface/microsoft-mpi) Default for Windows
166+
- `MicrosoftMPI_jll`: [Microsoft MPI](https://learn.microsoft.com/en-us/message-passing-interface/microsoft-mpi) Default for Windows
167167
- `MPICH_jll`: [MPICH](https://www.mpich.org/). Default for all other systems
168168
- `OpenMPI_jll`: [Open MPI](https://www.open-mpi.org/)
169169
- `MPItrampoline_jll`: [MPItrampoline](https://github.com/eschnett/MPItrampoline): an MPI forwarding layer.

docs/src/knownissues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ For further information see
109109

110110
## UCX
111111

112-
[UCX](https://www.openucx.org/) is a communication framework used by several MPI implementations.
112+
[UCX](https://openucx.org/) is a communication framework used by several MPI implementations.
113113

114114
### Memory cache
115115

0 commit comments

Comments
 (0)