forked from yang-song/score_sde_pytorch
-
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.
merge queue training and sampling jobs on JASMIN into one
- Loading branch information
1 parent
a401317
commit 75fd83c
Showing
3 changed files
with
30 additions
and
16 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,30 @@ | ||
#!/bin/bash | ||
# Script for queueing a model job on LOTUS on JASMIN via lotus-wrapper script | ||
|
||
set -euo pipefail | ||
|
||
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) | ||
|
||
smem=128G | ||
stime=1-00:00:00 | ||
|
||
while getopts ":m:t:" opt; do | ||
case ${opt} in | ||
m) | ||
smem=${OPTARG} | ||
;; | ||
t) | ||
stime=${OPTARG} | ||
;; | ||
\? ) | ||
# echo "Invalid option: -${OPTARG}" 1>&2 | ||
;; | ||
: ) | ||
echo "Invalid option: $OPTARG requires an argument" 1>&2 | ||
exit 1 | ||
;; | ||
esac | ||
done | ||
shift "$((OPTIND -1))" | ||
|
||
sbatch --parsable --gres=gpu:1 --partition=orchid --account=orchid --time=${stime} --mem=${smem} -- ${SCRIPT_DIR}/lotus-wrapper $@ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.