Skip to content

WPS Installation

Now, we will be creating a Slurm job submission script to install WPS using Spack.

wps-install.sbatch
1
2
3
4
5
6
7
cat <<EOF > wps-install.sbatch
#!/bin/bash
#SBATCH -N 1
#SBATCH --exclusive

spack install -j 1 wps%intel ^intel-oneapi-mpi+external-libfabric
EOF

Submit the job by copy the following to your CLI.

sbatch wps-install.sbatch

Checking the Clusters

You may check the progress of the installation. CF indicates that the nodes is currently under configuration while R indicates running nodes.

squeue

Alt Text

Use cat or tail to see the output of the installation. You shall see the successful installation message at the end of the output upon successful installation.

cat slurm-<jobID>.out
tail slurm-<jobID>.out

Use Spack find to check if the version of WPS is correctly installed under the intel compilers.

Alt Text

spack find

Alt Text