From b15bc0b19e44d609bb8d7025be7442f755156709 Mon Sep 17 00:00:00 2001 From: Haritha Siddabathuni Som <93623920+alcf-haritha@users.noreply.github.com> Date: Fri, 14 Jun 2024 14:10:02 -0500 Subject: [PATCH] Update qsub_polaris.sc added module use and updated conda module name --- learningFrameworks/distributedDeepLearning/DDP/qsub_polaris.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learningFrameworks/distributedDeepLearning/DDP/qsub_polaris.sc b/learningFrameworks/distributedDeepLearning/DDP/qsub_polaris.sc index 4084890..fa29cc3 100755 --- a/learningFrameworks/distributedDeepLearning/DDP/qsub_polaris.sc +++ b/learningFrameworks/distributedDeepLearning/DDP/qsub_polaris.sc @@ -10,7 +10,7 @@ cd $PBS_O_WORKDIR -module load conda/2023-10-04; conda activate +module use /soft/modulefiles; module load conda; conda activate aprun -n 1 -N 1 --cc depth -d 64 python pytorch_cnn_ddp.py >& pytorch_cnn_ddp.py.1.out aprun -n 2 -N 2 --cc depth -d 32 python pytorch_cnn_ddp.py >& pytorch_cnn_ddp.py.2.out aprun -n 4 -N 4 --cc depth -d 16 python pytorch_cnn_ddp.py >& pytorch_cnn_ddp.py.4.out