-
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
LukeHollingsworth
committed
Jun 28, 2024
1 parent
f67b4c2
commit 978f001
Showing
4 changed files
with
42 additions
and
135 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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.
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 |
---|---|---|
@@ -1,18 +1,21 @@ | ||
#!/bin/bash | ||
# | ||
#SBATCH --job-name=TEM_log_test | ||
#SBATCH --mem 50000 # memory pool for all cores | ||
#SBATCH --job-name=$NAME | ||
#SBATCH --mem=50000 # memory pool for all cores | ||
#SBATCH --time=72:00:00 # time | ||
#SBATCH -o TEM_logs/TEM_log_test.%N.%j.out # STDOUT | ||
#SBATCH -e TEM_logs/TEM_log-test.%N.%j.err # STDERR | ||
#SBATCH -o TEM_logs/$NAME.%N.%j.out # STDOUT | ||
#SBATCH -e TEM_logs/$NAME.%N.%j.err # STDERR | ||
#SBATCH -p gpu | ||
#SBATCH --gres=gpu:1 | ||
#SBATCH --ntasks=1 | ||
|
||
# Set the job name variable | ||
NAME="TEM_big_50K" | ||
|
||
source ~/.bashrc | ||
|
||
conda activate NPG-env | ||
|
||
python whittington_2020_run.py | ||
|
||
exit | ||
exit |