-
Notifications
You must be signed in to change notification settings - Fork 46
Merge rrfs.v1.0.0 to develop #982
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
Merged
+861
−431
Merged
Changes from 18 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
529b6ea
Bring read_radar bug fix (PR 738) to RRFS release branch. (#744)
hu5970 d0facd7
add GDIT's performance optimizaiton for RRFS
ShunLiu-NOAA 1ae752d
add GDIT's performance optimization for RRFS
ShunLiu-NOAA 0b21bad
initialize variables in observer_fv3reg.f90 to avoid the warning mess…
ShunLiu-NOAA ffabb40
update github ci yamls
ShunLiu-NOAA c814d94
add gdit's modification
ShunLiu-NOAA 5a9f28b
use indent format with three spaces
ShunLiu-NOAA 0893efc
rrfs.v1.0.0 release branch update with GDIT's performance optimizatio…
ShunLiu-NOAA abf57f6
fix for problems in ctests using debug mode of GSI release/rrfs1.0.0 …
TingLei-NOAA ed2b482
Update bufr_d to bufr_4 for bufr 12.1.0 version. (#941)
RuifangLi7 fdfa520
[release/rrfs.v1.0.0] Adds changes needed for BUFR/12.2 (#963)
MatthewPyle-NOAA bcc8117
add sat ID of goes19 to read-in list (#967)
ShunLiu-NOAA 844f48e
Merge branch 'rrfs.v1.0.0' into release/rrfs.v1.0.0
ShunLiu-NOAA 24539f5
Merge pull request #1 from NOAA-EMC/release/rrfs.v1.0.0
ShunLiu-NOAA 982ad0f
Merge branch 'test' into rrfs.v1.0.0
ShunLiu-NOAA 0a76605
Merge pull request #2 from ShunLiu-NOAA/rrfs.v1.0.0
ShunLiu-NOAA ba59e76
revert pcgsoi to the version in develop branch
ShunLiu-NOAA bba747d
Merge branch 'NOAA-EMC:develop' into test
ShunLiu-NOAA 49cb9f5
remove commented out lines
ShunLiu-NOAA 9d362ad
change bufrver to 12.1.0
ShunLiu-NOAA acd493d
remove the extra blank line
ShunLiu-NOAA 388a8bc
remove commentout lines and fix the incorrect type for the variable '…
ShunLiu-NOAA 8a80927
typo fix
ShunLiu-NOAA 79f8af1
remove timers in the code
ShunLiu-NOAA 40a0a01
remove duplicate bufr_ver
ShunLiu-NOAA fbbe5f9
after confirming from dkokron, the issues found by copilot are addressed
ShunLiu-NOAA a01d768
remove an unnecessary comment line.
ShunLiu-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
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,23 @@ | ||
| module crc32 | ||
|
RussTreadon-NOAA marked this conversation as resolved.
|
||
| use iso_c_binding | ||
| implicit none | ||
| public :: digest | ||
|
|
||
| interface | ||
| integer function digest_c(message) bind(c) | ||
| use iso_c_binding, only: c_char | ||
| character(kind=c_char), intent(in) :: message(*) | ||
| end function digest_c | ||
| end interface | ||
|
|
||
| contains | ||
|
|
||
| integer function digest(m) | ||
| use iso_c_binding, only: c_null_char | ||
| implicit none | ||
| character(len=*), intent(in) :: m | ||
| !m='nid001019' | ||
|
RussTreadon-NOAA marked this conversation as resolved.
Outdated
|
||
| digest=abs(digest_c(trim(m)//c_null_char)) | ||
| !write(6,'("Digest ",I12)') digest | ||
|
RussTreadon-NOAA marked this conversation as resolved.
Outdated
|
||
| end function digest | ||
| end module crc32 | ||
This file contains hidden or 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,7 @@ | ||
| #include <stdio.h> | ||
| #include <string.h> | ||
| #include <zlib.h> | ||
|
|
||
| uLong digest_c(char * message) { | ||
| return crc32(0, (const void*)message, strlen(message)); | ||
| } |
This file contains hidden or 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 hidden or 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.
Uh oh!
There was an error while loading. Please reload this page.