You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Load required modules, including correct CPU and GPU target modules (NOTE: the same modules should be loaded when running julia - JUHPC can be used in a module build recipe...)
7
+
module load daint-gpu
8
+
module switch PrgEnv-cray PrgEnv-gnu
9
+
module load cray-hdf5-parallel
10
+
module list
11
+
12
+
# Activate the HPC setup environment variables
13
+
.$JUHPC_SETUP_INSTALLDIR/activate
14
+
15
+
# Call juliaup to install juliaup and latest julia on scratch
16
+
juliaup
17
+
18
+
# Call juliaup to see its options
19
+
juliaup
20
+
21
+
# Call julia Pkg
22
+
julia -e 'using Pkg; Pkg.status()'
23
+
24
+
# Add CUDA.jl
25
+
julia -e 'using Pkg; Pkg.add("CUDA"); using CUDA; CUDA.versioninfo()'
26
+
27
+
# Add MPI.jl
28
+
julia -e 'using Pkg; Pkg.add("MPI"); using MPI; MPI.versioninfo()'
29
+
30
+
# Add HDF5.jl
31
+
julia -e 'using Pkg; Pkg.add("HDF5"); using HDF5; @show HDF5.has_parallel()'
0 commit comments