-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
55 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/bin/bash | ||
|
||
# general configuration of the job | ||
#SBATCH --job-name=PrototypeTest | ||
#SBATCH --account=intertwin | ||
#SBATCH --mail-user= | ||
#SBATCH --mail-type=ALL | ||
#SBATCH --output=job.out | ||
#SBATCH --error=job.err | ||
#SBATCH --time=00:30:00 | ||
|
||
# configure node and process count on the CM | ||
#SBATCH --partition=batch | ||
#SBATCH --nodes=1 | ||
#SBATCH --ntasks-per-node=1 | ||
#SBATCH --cpus-per-task=4 | ||
#SBATCH --gpus-per-node=4 | ||
|
||
# SBATCH --exclusive | ||
|
||
# gres options have to be disabled for deepv | ||
#SBATCH --gres=gpu:4 | ||
|
||
# load modules | ||
ml --force purge | ||
ml Stages/2023 StdEnv/2023 NVHPC/23.1 OpenMPI/4.1.4 cuDNN/8.6.0.163-CUDA-11.7 Python/3.10.4 HDF5 libaio/0.3.112 GCC/11.3.0 | ||
|
||
# shellcheck source=/dev/null | ||
source ~/.bashrc | ||
|
||
# from repo's root dir | ||
srun micromamba run -p ./.venv-pytorch pytest -v -m slurm tests/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.