...
To submit to a specific node architecture part of a team’s priority, a user can specify the general partition and target the Skylake AMD architecture:
#!/bin/bash
#SBATCH -N 1
#SBATCH -n 36126
#SBATCH -p general
#SBATCH --constraint=Skylake'epyc128'
. spack/share/spack/setup-env.sh (or the following command: source spack/share/spack/setup-env.sh)
...
To view the package list for any other Spack packages that a user would like to install, the following page can be accessed:
https://packages.spack.readthedocs.io/en/latest/package_list.html
Also, some SPACK packages will depend on the type of CPU architecture, to have a spack package installed on a specific or different CPU architectures, the spack install packagename command can be placed in the submission script above.
...