-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
separate horovod ds installation script into two files
- Loading branch information
1 parent
69e1dd2
commit bb815e6
Showing
2 changed files
with
21 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
# Job configuration | ||
#SBATCH --job-name=setup_venv | ||
#SBATCH --account=intertwin | ||
#SBATCH --output=horovod_ds_installation.out | ||
#SBATCH --error=horovod_ds_installation.err | ||
#SBATCH --time=00:30:00 | ||
|
||
# Resources allocation | ||
#SBATCH --partition=develbooster | ||
#SBATCH --nodes=1 | ||
#SBATCH --gres=gpu | ||
|
||
ml --force purge | ||
ml Stages/2024 GCC OpenMPI CUDA/12 cuDNN MPI-settings/CUDA | ||
ml Python/3.11.3 CMake HDF5 PnetCDF libaio mpi4py git Clang | ||
|
||
source .venv/bin/activate | ||
bash install-horovod-deepspeed-cuda.sh |
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