-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HPC: Add user guide for HPC software installation with Spack #414
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR has some changes I need to address. Additionally when I tested it there was an application problem. Suggest we move away from "develop" spack branch to stabilize customer experience.
TODO:
- make changes to work from stable spack branch
- test the installation from start to finish.
I need to allocate some time for this testing.
#SBATCH --nodes=1 | ||
#SBATCH --ntasks-per-core=1 | ||
#SBATCH --export=ALL | ||
#SBATCH --partition=compute |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove partition directive
#SBATCH --cpus-per-task=1 | ||
#SBATCH --nodes=1 | ||
#SBATCH --ntasks-per-core=1 | ||
#SBATCH --export=ALL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove export all
#SBATCH --wait-all-nodes=1 | ||
#SBATCH --ntasks-per-node=8 | ||
#SBATCH --cpus-per-task=1 | ||
#SBATCH --nodes=1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove nodes
@@ -0,0 +1,40 @@ | |||
#!/bin/bash | |||
#SBATCH --wait-all-nodes=1 | |||
#SBATCH --ntasks-per-node=8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the ntasks per node = 8 seems to conflict with the cpus per task.
Description of changes:
hpc_install_with_spack.md