-
Notifications
You must be signed in to change notification settings - Fork 156
add io offload prototype #1774
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
Merged
add io offload prototype #1774
Changes from 26 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
f6ebba0
#NOTHING_WORKS
uramirez8707 972bc90
wut
uramirez8707 06d2405
push uncommitted updates
uramirez8707 bdde8ed
separate and move modules to new offloading directory
130ab90
Merge remote-tracking branch 'origin/main' into HEAD
90c0c8c
add routines for metadata transfer type
710d887
add constants for allocatable workaround and expand metadata transfer…
f762986
add inherited class structure for reals and ints
fbd739e
finish up support for all data types and add to test
757764b
add metadata object usage to offload moduld
1fe352f
free memory after redistribute calls and adjust domains total mem add…
b3770af
fix for cubic domains
0d54864
add clocks for offload writes/redistributes
9e31d77
update for layouts and fix for more than 1 offload pe per tile
6c56515
fix bug with different layouts and pe counts
1176605
Merge branch 'main' of github.com:noaa-gfdl/fms into metadata-transfer
ed4c178
remove attribute_type from base class and any unused variables/args
890bfd6
comments and linter
9541c66
undo accidental change to data override test
79a3af4
add cast for r8 build option to pass
a9ce72c
add ifdefs for for mpi-less build
18c7178
fix mpi transfer for intel but not gcc :(
ecba40d
fix mpi struct bug with gcc and remove mpp test
b2be463
Merge branch 'main' into metadata-transfer
rem1776 c0ab0dc
add more documentation and any missing headers
08a7da9
fix typo and white space
596da47
add any missing apache licenses
4a5ed59
add nml for io offload module
969513e
add in todo comments and some type/length changes from reviews
07ea5a8
clean up typing for netcdf file objs
9dc1d4f
line lengths for linter
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -43,6 +43,7 @@ SUBDIRS = \ | |
| fms2_io \ | ||
| mosaic2 \ | ||
| fms \ | ||
| offloading \ | ||
| parser \ | ||
| string_utils \ | ||
| affinity \ | ||
|
|
||
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,46 @@ | ||
| #*********************************************************************** | ||
| #* 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/>. | ||
| #*********************************************************************** | ||
|
|
||
| # This is an automake file for the constants directory of the FMS | ||
| # package. | ||
|
|
||
| # Ryan Mulhall 2025 | ||
|
|
||
| # Include .h and .mod files. | ||
| AM_CPPFLAGS = -I$(top_srcdir)/include | ||
| AM_FCFLAGS = $(FC_MODINC). $(FC_MODOUT)$(MODDIR) | ||
|
|
||
| # Build this uninstalled convenience library. | ||
| noinst_LTLIBRARIES = liboffload.la | ||
|
|
||
| # The convenience library depends on its source. | ||
| liboffload_la_SOURCES = \ | ||
| metadata_transfer.F90 \ | ||
| offloading_io.F90 | ||
|
|
||
| MODFILES = \ | ||
| metadata_transfer_mod.$(FC_MODEXT) \ | ||
| offloading_io_mod.$(FC_MODEXT) | ||
|
|
||
| offloading_io_mod.$(FC_MODEXT): metadata_transfer_mod.$(FC_MODEXT) | ||
|
|
||
| BUILT_SOURCES = $(MODFILES) | ||
| nodist_include_HEADERS = $(MODFILES) | ||
|
|
||
| include $(top_srcdir)/mkmods.mk |
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.
Uh oh!
There was an error while loading. Please reload this page.