-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add configuration file for Graham (#169) #172
Open
bouthilx
wants to merge
36
commits into
SMART-Lab:master
Choose a base branch
from
bouthilx:graham_config
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
bd86e21
Added test for slurm integration
aalitaiga 1168e3e
New test for priority
aalitaiga 243b191
Added gres + memory tests
aalitaiga 0a16243
Refactored tests
aalitaiga 6f31489
small update
aalitaiga 3b0dd0b
Python3 compatibility + PR comments
aalitaiga e8e6ec0
Fixed naccelerators issue
aalitaiga 04f0ff1
Updated tests to skip on Graham and Cedar smartdispatch modified to h…
aalitaiga d7d0300
Cleaned code with PR feedback
aalitaiga c7bb250
Updated tests
aalitaiga a20405b
Updated tests using mock
aalitaiga 5bde1c6
Refactor detect_cluster tests
bouthilx 0ff4776
Small changes in TestSlurmQueue
aalitaiga d1ad338
Fix add_sbatch_option bug
bouthilx 899167f
Refactor SlurmJobGenerator
bouthilx 581f835
Remove queue name for Slurm clusters
bouthilx 1d74e1a
Replace PBS_JOBID with SLURM_JOB_ID
bouthilx f00e877
Add PBS_FILENAME definition to pbs.prolog
bouthilx 6b2d530
Fix env var export option for Slurm
bouthilx 21df3dd
Adapt PBS_WALLTIME for slurm
bouthilx ea1d5b3
Add sbatch to command-line launcher options
bouthilx adb8cba
Make get_launcher more flexible
bouthilx f3661ba
Add verbosity to smart-dispatch
bouthilx 972a1ab
Updated documentation for slurm clusters
aalitaiga 29973b0
Add support for SlurmJobGenerator
bouthilx f734fb3
Print stderr when both qsub and sacctmgr fails
bouthilx 4506887
Add automatic script for cluster verification
bouthilx 02845e0
Add verification script for cedar
bouthilx 2d6e6fd
Add verification script for graham
bouthilx f967180
Add verification script for mila
bouthilx 8c655b4
Make get_launcher return None when no launcher
bouthilx 998f3ba
Updated README
aalitaiga a3c08c8
Set properly account in verify_graham
bouthilx 9fb5ab6
Set properly account in verify_cedar
bouthilx 1dea0d8
Fix walltime_to_seconds convertion
bouthilx cac2f08
Add configuration file for Graham
bouthilx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"cpu": { | ||
"ram": 126, | ||
"cores": 32, | ||
"max_walltime": "648:00:00", | ||
"gpus": 0, | ||
"nodes": 800 | ||
}, | ||
"large_mem": { | ||
"ram": 252, | ||
"cores": 32, | ||
"max_walltime": "648:00:00", | ||
"gpus": 0, | ||
"nodes": 56 | ||
}, | ||
"large_mem_500": { | ||
"ram": 504, | ||
"cores": 32, | ||
"max_walltime": "648:00:00", | ||
"gpus": 0, | ||
"nodes": 24 | ||
}, | ||
"large_mem_3000": { | ||
"ram": 3024, | ||
"cores": 64, | ||
"max_walltime": "?", | ||
"gpus": 0, | ||
"nodes": 3 | ||
}, | ||
"gpu_1": { | ||
"ram": 63, | ||
"modules": ["cuda/8.0.44"], | ||
"cores": 16, | ||
"max_walltime": "648:00:00", | ||
"gpus": 1, | ||
"nodes": 320 | ||
}, | ||
"gpu_2": { | ||
"ram": 126, | ||
"modules": ["cuda/8.0.44"], | ||
"cores": 32, | ||
"max_walltime": "648:00:00", | ||
"gpus": 2, | ||
"nodes": 160 | ||
} | ||
} |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All features including the ones like
?