-
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.
Adding Allocation and Partition - New Approach (#117)
* added support for allocation and partition specification from slurm params * add partition/allocation to hpc configs * new format for hpc config to specify allocation and partition * update types.ts will allocation parameter to fix error * Tweak to adding allocation * lint issues and . notation for hpcconfig * added allocation/partition to hpcconfig in types.ts * removed maintainer ability to be null * adding back maintainer nullability and add check in slurmconnector
- Loading branch information
Showing
4 changed files
with
35 additions
and
11 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
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 |
---|---|---|
|
@@ -26,7 +26,9 @@ | |
"/data/cigi/scratch/cigi-gisolve/compute_shared": "/compute_shared" | ||
}, | ||
"allowlist": [], | ||
"denylist": [] | ||
"denylist": [], | ||
"allocation": null, | ||
"partition": null | ||
}, | ||
"expanse_community": { | ||
"ip": "login.expanse.sdsc.edu", | ||
|
@@ -56,16 +58,16 @@ | |
], | ||
"init_sbatch_options": [ | ||
"#SBATCH --constraint=lustre", | ||
"#SBATCH --partition=shared", | ||
"#SBATCH --nodes=1", | ||
"#SBATCH --account=TG-EAR190007" | ||
"#SBATCH --nodes=1" | ||
], | ||
"xsede_job_log_credential": { | ||
"xsederesourcename": "expanse.sdsc.xsede.org", | ||
"apikey": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" | ||
}, | ||
"allowlist": [], | ||
"denylist": [] | ||
"denylist": [], | ||
"allocation": "TG-EAR190007", | ||
"partition": "shared" | ||
}, | ||
"bridges_community_gpu": { | ||
"ip": "bridges2.psc.edu", | ||
|
@@ -114,9 +116,11 @@ | |
"/anvil/scratch/x-cybergis/compute": "/compute_scratch" | ||
}, | ||
"init_sbatch_script": ["module load gcc", "module load openmpi"], | ||
"init_sbatch_options": ["#SBATCH --partition=shared", "#SBATCH --nodes=1"], | ||
"init_sbatch_options": ["#SBATCH --nodes=1"], | ||
"allowlist": [], | ||
"denylist": [] | ||
"denylist": [], | ||
"allocation": null, | ||
"partition": "shared" | ||
}, | ||
"anvil_community_highmem": { | ||
"ip": "anvil.rcac.purdue.edu", | ||
|
@@ -142,9 +146,11 @@ | |
"/anvil/scratch/x-cybergis/compute": "/compute_scratch" | ||
}, | ||
"init_sbatch_script": ["module load gcc", "module load openmpi"], | ||
"init_sbatch_options": ["#SBATCH --partition=highmem"], | ||
"init_sbatch_options": [], | ||
"allowlist": [], | ||
"denylist": [] | ||
"denylist": [], | ||
"allocation": null, | ||
"partition": "highmem" | ||
}, | ||
"aces_community": { | ||
"ip": "aces-login1.hprc.tamu.edu", | ||
|
@@ -173,7 +179,9 @@ | |
"[email protected]", | ||
"[email protected]" | ||
], | ||
"denylist": [] | ||
"denylist": [], | ||
"allocation": null, | ||
"partition": null | ||
} | ||
|
||
} |
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 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