Skip to content

Commit 5fac25d

Browse files
authored
Update index.md
1 parent 7fab1fb commit 5fac25d

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

docs/src/index.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -205,25 +205,21 @@ transD_GP.splittasks(;nsoundings=1211, ncores=1247, nchainspersounding=5, ppn=48
205205
[Here](https://github.com/GeoscienceAustralia/HiQGA.jl/blob/a8b258d6cef23be7423c9e8652ea0926af28f448/ASEG_Hobart_Workshop_2024/UDF_probabilistic/submit.sh) is an example of a massive job qsub submit script.
206206
### Troubleshooting MPI set up
207207
Some folks have reported that the above MPI install provides error messages to the order of "You are using the system provided MPI", indicating that it is not Intel MPI 2021.10.0 that they are working with. In this case, you should first remove MPI.jl
208-
```
209-
# goto Pkg mode in Julia by hitting ]
210-
pgk> rm MPI.jl
211-
```
212208
exit Julia, then edit `~/.julia/prefs/MPI.toml` adding in the following lines
213209
```
214210
path = "/apps/intel-mpi/2021.10.0"
215211
library = "/apps/intel-mpi/2021.10.0/lib/release/libmpi.so"
216212
binary = "system"
217213
```
218-
then go back to Julia in Pkg mode, making sure the intel-mpi module is loaded in BASH and add back MPI.jl
214+
then go back to Julia in Pkg mode, making sure the intel-mpi module is loaded in BASH and build again MPI.jl
219215
```
220216
module load intel-mpi/2021.10.0
221217
julia
222218
```
223219
Within Julia, you can then do
224220
```
225221
# hit ] to enter Pkg mode
226-
pkg>add MPI@0.19.2
222+
pkg>build MPI
227223
```
228224
and this should work.
229225
## For installing development mode pre-release versions

0 commit comments

Comments
 (0)