-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
up mem (4-->8GB) and workers (16-->32), in order to post process the …
…9ka bisect runs
- Loading branch information
1 parent
d4e98a6
commit 5febe0f
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -2,15 +2,15 @@ | |
#SBATCH --job-name=dask_gridding | ||
#SBATCH --time=02:00:00 | ||
#SBATCH --ntasks=1 | ||
#SBATCH --cpus-per-task=16 | ||
#SBATCH --mem-per-cpu=4000M | ||
#SBATCH --cpus-per-task=32 | ||
#SBATCH --mem-per-cpu=8000M | ||
#SBATCH --mail-type=ALL # send all mail (way to much) | ||
#SBATCH [email protected] # email to spend updates too | ||
#SBATCH --output=dask_%A_%a.out # standard output | ||
#SBATCH --error=dask_%A_%a.err # standard error | ||
|
||
# numbers of cores each job in the array will have | ||
export NUM_WORKERS=16 | ||
export NUM_WORKERS=32 | ||
# use a single thread per cpu core | ||
export THREADS_PER_WORKER=1 | ||
|
||
|