-
Notifications
You must be signed in to change notification settings - Fork 177
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
Update UFS to develop as of 2023 Apr 17 #1509
Merged
WalterKolczynski-NOAA
merged 13 commits into
NOAA-EMC:develop
from
WalterKolczynski-NOAA:feature/ufs_update
May 1, 2023
Merged
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
8ef27c1
Update UFS to develop as of 2023 Apr 17
WalterKolczynski-NOAA e50241c
Remove unused diag table
WalterKolczynski-NOAA 1b58c7e
Undo change to DA diag table
WalterKolczynski-NOAA 43e05cc
patch to PR1509 related to the write tasks per group update
aerorahul 265e9e1
Merge branch 'develop' into patch/1509
aerorahul 6196d70
make it clear write tasks are per thread and per tile
aerorahul 1e3e8c7
Update UFS to develop as of 2023 Apr 17
WalterKolczynski-NOAA 1910490
Remove unused diag table
WalterKolczynski-NOAA 7c3b4b7
Undo change to DA diag table
WalterKolczynski-NOAA 464e7f1
Merge branch 'feature/ufs_update' into patch/1509
WalterKolczynski-NOAA ce8117e
Merge pull request #25 from aerorahul/patch/1509
WalterKolczynski-NOAA c6198a3
Define WRTTASK_PER_GROUP_PER_THREAD
WalterKolczynski-NOAA 94442ed
Change write tasks back to per thread
WalterKolczynski-NOAA 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
make it clear write tasks are per thread and per tile
- Loading branch information
commit 6196d7008e2725de0249a85d7e9c734669adf5d1
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
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.
Can we change this to a multiple of 6, e,g, 12? It gives developers option to try writing restart files on write grid comp?
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.
As seen from the variable name, it is per tile. So, it gets multiplied by 6 before ending up in
model_configure
.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.
@junwang-noaa The meaning of the variable has already been changed to be per tile (we multiply by 6 later), so it is impossible for the end value to not be divisible by 6.
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.
Thanks for the explanation.