forked from CESM-Development/cime
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
more work on netcdf integration layer
- Loading branch information
1 parent
36e51e7
commit 0734bad
Showing
4 changed files
with
36 additions
and
131 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/** | ||
* @file | ||
* @internal Additional nc_* functions to support netCDF integration. | ||
* | ||
* @author Ed Hartnett | ||
*/ | ||
|
||
#include "config.h" | ||
#include <stdlib.h> | ||
#include <pio_internal.h> | ||
#include "ncintdispatch.h" | ||
|
||
/** | ||
* Same as PIOc_Init_Intracomm(). | ||
* | ||
* @author Ed Hartnett | ||
*/ | ||
int | ||
nc_init_intracomm(MPI_Comm comp_comm, int num_iotasks, int stride, int base, int rearr, | ||
int *iosysidp) | ||
{ | ||
return PIO_NOERR; | ||
} |
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