From f86d247536e165354b510f36c486d3a27e0a6327 Mon Sep 17 00:00:00 2001 From: kenny <97374837+kankenny@users.noreply.github.com> Date: Wed, 5 Jun 2024 16:38:29 -0400 Subject: [PATCH] Delete example-concurrent-svd.sbatch --- example-concurrent-svd.sbatch | 43 ----------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 example-concurrent-svd.sbatch diff --git a/example-concurrent-svd.sbatch b/example-concurrent-svd.sbatch deleted file mode 100644 index 2e9d1d8..0000000 --- a/example-concurrent-svd.sbatch +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/bash - -echo "Starting Image Data Augmentation - Low Rank Approximation with the SVD" - -############################################################### -# Image Data Augmentation - Low Rank Approximation with the SVD -############################################################### - - - -#SBATCH --job-name=DL_CV_SVD -#SBATCH --output=/hpc-logs/DL_CV_SVD.out -#SBATCH --nodes=1 -#SBATCH --ntasks-per-node=3 -#SBATCH --gpus 1 -#SBATCH --mem=10G -#SBATCH --output=output_%j.out -#SBATCH --error=error_%j.err -#SBATCH --mail-type=END,FAIL -#SBATCH --mail-user= - - -echo "Purging modules" -module purge -echo "Loading Python 3.11.8 module" -module load python/3.11.8 - -echo "Creating virtual environment svd-env" -virtualenv svd-env -source svd-env/bin/activate - -echo "Installing requirements" -pip install -r requirements.txt - - -echo "Starting Python scripts: do-study.py" -python setup.py - -srun -n 1 python /study/do-study.py 1 & -srun -n 1 python /study/do-study.py 2 & -srun -n 1 python /study/do-study.py 3 & - -wait \ No newline at end of file