-
Notifications
You must be signed in to change notification settings - Fork 136
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
coupler mixed precision #1353
Merged
Merged
coupler mixed precision #1353
Changes from all commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
46d8e44
Update mixedmode_base branch to main (#1144)
mlee03 dde0b88
update the mixedmode_base branch to main (#1154)
mlee03 bc9e4d9
Merge branch 'mixedmode' into mixedmode_base
rem1776 2977578
rm accidental empty line
b3374f6
chore: bring mixedmode_base up to date with main (#1173)
mlee03 cca0c7d
chore: update mixedmode_base to main (#1234)
mlee03 712330b
chore: merge main updates into mixedmode_base(#1267)
mlee03 8c72630
mixed-precision: update mixedmode base (#1289)
mlee03 19ee83f
readd file
1a309f4
working compile with type changes
2c0b45c
finish up ifs for association
7d23cb8
update existing tests for r4 precision, fix missed bc_types
baf95ca
add in test changes from other branch
f693a46
add in mikyung's test
f6503d7
more tests
9517433
mixed precision merge main into mixedmode_base (#1342)
mlee03 e27ec4a
remove added test for pr
49b3693
Merge remote-tracking branch 'origin/mixedmode_base' into coupler_mp_…
8c9eabf
update mikyungs ocean fluxes test for both kinds
9c543de
missed r4 argument + macros for aof test
24933d7
Add in checks for only one kind associated
5d8e7ff
Merge branch 'mixedmode' into coupler_mp_notest
rem1776 1d24387
Review comments + any lingering conversion warnings
f25e261
Merge branch 'coupler_mp_notest' of github.com:rem1776/FMS into coupl…
3813ce3
many linter fixes :(
22a41dc
Merge remote-tracking branch 'origin/mixedmode' into coupler_mp_notest
346c225
Add in class(*) for aof_set_coupler_flux optional reals
039e34d
fix issues with checks for only one kind associated
c41238b
only check association if bc count is >0
d509e0d
fix the checks again
d6ae048
cmake build
fea9409
remove added prints
60d5bc5
add bc count > 0 to error checking
298f70b
Merge remote-tracking branch 'origin/mixedmode' into coupler_mp_notest
67ad65e
Merge remote-tracking branch 'upstream/mixedmode' into coupler_mp_notest
47ae5f7
remove some other changes that slid in
27c6e87
take out set check in spawn routines
b6b1d02
build fixes
41a5bd7
fix build for real
c6fc1b4
typo
0b501bd
another typo
6b91325
one last thing hoepfully
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,53 @@ | ||
!*********************************************************************** | ||
!* GNU Lesser General Public License | ||
!* | ||
!* This file is part of the GFDL Flexible Modeling System (FMS). | ||
!* | ||
!* FMS is free software: you can redistribute it and/or modify it under | ||
!* the terms of the GNU Lesser General Public License as published by | ||
!* the Free Software Foundation, either version 3 of the License, or (at | ||
!* your option) any later version. | ||
!* | ||
!* FMS is distributed in the hope that it will be useful, but WITHOUT | ||
!* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
!* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
!* for more details. | ||
!* | ||
!* You should have received a copy of the GNU Lesser General Public | ||
!* License along with FMS. If not, see <http://www.gnu.org/licenses/>. | ||
!*********************************************************************** | ||
|
||
#undef FMS_CP_KIND_ | ||
#define FMS_CP_KIND_ r4_kind | ||
|
||
#undef FMS_CP_BC_TYPE_ | ||
#define FMS_CP_BC_TYPE_ bc_r4 | ||
|
||
#undef CT_RESCALE_DATA_2D_ | ||
#define CT_RESCALE_DATA_2D_ CT_rescale_data_2d_r4 | ||
|
||
#undef CT_RESCALE_DATA_3D_ | ||
#define CT_RESCALE_DATA_3D_ CT_rescale_data_3d_r4 | ||
|
||
#undef CT_INCREMENT_DATA_2D_3D_ | ||
#define CT_INCREMENT_DATA_2D_3D_ CT_increment_data_2d_3d_r4 | ||
|
||
#undef CT_EXTRACT_DATA_2D_ | ||
#define CT_EXTRACT_DATA_2D_ CT_extract_data_2d_r4 | ||
|
||
#undef CT_EXTRACT_DATA_3D_ | ||
#define CT_EXTRACT_DATA_3D_ CT_extract_data_3d_r4 | ||
|
||
#undef CT_EXTRACT_DATA_3D_2D_ | ||
#define CT_EXTRACT_DATA_3D_2D_ CT_extract_data_3d_2d_r4 | ||
|
||
#undef CT_SET_DATA_2D_ | ||
#define CT_SET_DATA_2D_ CT_set_data_2d_r4 | ||
|
||
#undef CT_SET_DATA_2D_3D_ | ||
#define CT_SET_DATA_2D_3D_ CT_set_data_2d_3d_r4 | ||
|
||
#undef CT_SET_DATA_3D_ | ||
#define CT_SET_DATA_3D_ CT_set_data_3d_r4 | ||
|
||
#include "coupler_types.inc" |
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,53 @@ | ||
!*********************************************************************** | ||
!* GNU Lesser General Public License | ||
!* | ||
!* This file is part of the GFDL Flexible Modeling System (FMS). | ||
!* | ||
!* FMS is free software: you can redistribute it and/or modify it under | ||
!* the terms of the GNU Lesser General Public License as published by | ||
!* the Free Software Foundation, either version 3 of the License, or (at | ||
!* your option) any later version. | ||
!* | ||
!* FMS is distributed in the hope that it will be useful, but WITHOUT | ||
!* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
!* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
!* for more details. | ||
!* | ||
!* You should have received a copy of the GNU Lesser General Public | ||
!* License along with FMS. If not, see <http://www.gnu.org/licenses/>. | ||
!*********************************************************************** | ||
|
||
#undef FMS_CP_KIND_ | ||
#define FMS_CP_KIND_ r8_kind | ||
|
||
#undef FMS_CP_BC_TYPE_ | ||
#define FMS_CP_BC_TYPE_ bc | ||
|
||
#undef CT_RESCALE_DATA_2D_ | ||
#define CT_RESCALE_DATA_2D_ CT_rescale_data_2d_r8 | ||
|
||
#undef CT_RESCALE_DATA_3D_ | ||
#define CT_RESCALE_DATA_3D_ CT_rescale_data_3d_r8 | ||
|
||
#undef CT_INCREMENT_DATA_2D_3D_ | ||
#define CT_INCREMENT_DATA_2D_3D_ CT_increment_data_2d_3d_r8 | ||
|
||
#undef CT_EXTRACT_DATA_2D_ | ||
#define CT_EXTRACT_DATA_2D_ CT_extract_data_2d_r8 | ||
|
||
#undef CT_EXTRACT_DATA_3D_ | ||
#define CT_EXTRACT_DATA_3D_ CT_extract_data_3d_r8 | ||
|
||
#undef CT_EXTRACT_DATA_3D_2D_ | ||
#define CT_EXTRACT_DATA_3D_2D_ CT_extract_data_3d_2d_r8 | ||
|
||
#undef CT_SET_DATA_2D_ | ||
#define CT_SET_DATA_2D_ CT_set_data_2d_r8 | ||
|
||
#undef CT_SET_DATA_2D_3D_ | ||
#define CT_SET_DATA_2D_3D_ CT_set_data_2d_3d_r8 | ||
|
||
#undef CT_SET_DATA_3D_ | ||
#define CT_SET_DATA_3D_ CT_set_data_3d_r8 | ||
|
||
#include "coupler_types.inc" |
Oops, something went wrong.
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.
is there one more place to add coupler/include?