-
Notifications
You must be signed in to change notification settings - Fork 181
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
Allow for C1152 ATM-Aero cycled DA to run on WCOSS2 #3309
Open
CoryMartin-NOAA
wants to merge
19
commits into
NOAA-EMC:develop
Choose a base branch
from
CoryMartin-NOAA:feature/aero1152
base: develop
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
19 commits
Select commit
Hold shift + click to select a range
87db086
Updates for cycling C1152 ATM
CatherineThomas-NOAA 7c3a155
Merge branch 'NOAA-EMC:develop' into c1152_cyc
CatherineThomas-NOAA 9c1b856
Merge branch 'NOAA-EMC:develop' into c1152_cyc
CatherineThomas-NOAA c7b3010
Update gsi_utils hash for C1152 cycling
CatherineThomas-NOAA a161bf2
Update gsi_utils for C1152 cycling
CatherineThomas-NOAA e90db09
Merge branch 'NOAA-EMC:develop' into c1152_cyc
CatherineThomas-NOAA a11f4d2
aerosol c1152 cycling changes
d9c1c5b
more resource changes
6db13da
extend walltime for aerovar
27dcbbb
Merge branch 'develop' into feature/aero1152
c29244f
Merge branch 'NOAA-EMC:develop' into feature/aero1152
CoryMartin-NOAA c9ef39b
update config.aeroanlgenb
CoryMartin-NOAA c0f96d1
Merge branch 'NOAA-EMC:develop' into feature/aero1152
CoryMartin-NOAA 4e48fa2
Merge branch 'NOAA-EMC:develop' into feature/aero1152
CoryMartin-NOAA dd9823c
update GDAS hash
CoryMartin-NOAA 0f4dd95
appease the lint gods
CoryMartin-NOAA dc36516
address russ's comments
CoryMartin-NOAA 9a601a0
module setup line
CoryMartin-NOAA 2529457
update gdas hash
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -420,7 +420,7 @@ case ${step} in | |
|
||
export layout_x | ||
export layout_y | ||
walltime="00:10:00" | ||
walltime="00:30:00" | ||
ntasks=1 | ||
threads_per_task=1 | ||
tasks_per_node=$(( max_tasks_per_node / threads_per_task )) | ||
|
@@ -454,9 +454,9 @@ case ${step} in | |
export layout_x | ||
export layout_y | ||
|
||
walltime="00:30:00" | ||
walltime="00:45:00" | ||
ntasks=$(( layout_x * layout_y * 6 )) | ||
threads_per_task=1 | ||
threads_per_task=5 | ||
Comment on lines
+457
to
+459
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similarly, should threads and walltime be specific to the resolution? |
||
tasks_per_node=$(( max_tasks_per_node / threads_per_task )) | ||
export is_exclusive=True | ||
;; | ||
|
@@ -498,11 +498,11 @@ case ${step} in | |
|
||
|
||
"aeroanlfinal") | ||
walltime="00:10:00" | ||
walltime="00:30:00" | ||
ntasks=1 | ||
threads_per_task=1 | ||
tasks_per_node=$(( max_tasks_per_node / threads_per_task )) | ||
memory="3072M" | ||
memory="13072M" | ||
;; | ||
|
||
"marineanlinit") | ||
|
@@ -903,7 +903,7 @@ case ${step} in | |
;; | ||
"C768" | "C1152") | ||
# Not valid resolutions for ensembles | ||
declare -x "walltime_gdas"="00:50:00" | ||
declare -x "walltime_gdas"="01:20:00" | ||
declare -x "walltime_gfs"="06:00:00" | ||
;; | ||
*) | ||
|
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
case ${step} in | ||
"prep") | ||
export is_exclusive=True | ||
export tasks_per_node=5 | ||
export memory="480GB" | ||
;; | ||
|
||
|
Submodule gdas.cd
updated
32 files
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
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.
Should
walltime
beCASE
-specific?