Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
libcdi
Commits
622ae6a0
Commit
622ae6a0
authored
3 years ago
by
Thomas Jahns
Committed by
Sergey Kosukhin
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Improve CDI-PIO documentation.
parent
0e1c46bf
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/cdipio.h
+10
-3
10 additions, 3 deletions
src/cdipio.h
with
10 additions
and
3 deletions
src/cdipio.h
+
10
−
3
View file @
622ae6a0
...
...
@@ -41,15 +41,22 @@
void
pioEndDef
(
void
);
void
pioEndTimestepping
(
void
);
void
pioFinalize
(
void
);
/* cdiPioNoPostCommSetup: Dummy function to use as argument to pioInit
/* cdiPioNoPostCommSetup: Dummy default function to use as argument to
* cdiPioConfSetCallBackActions or pioInit
* if no actions are necessary after I/O servers initialize communication */
void
cdiPioNoPostCommSetup
(
void
);
/* pioInit: initialize I/O server processes and communication */
/* pioInit: initialize I/O server processes and communication
* Deprecated, use cdiPioInit instead! */
MPI_Comm
pioInit
(
MPI_Comm
commSuper
,
int
nProcsIO
,
int
IOMode
,
int
*
pioNamespace
,
float
partInflate
,
void
(
*
postCommSetupActions
)(
void
));
/* cdiPioInit: initialize I/O server processes and communication */
MPI_Comm
cdiPioInit
(
MPI_Comm
commSuper
,
int
confResH
,
int
*
pioNamespace
);
/* pioWriteTimestep: flush data from all client RMA buffers to server */
void
pioWriteTimestep
(
void
);
/* cdiPioRDMAProgress: devote some resources to make RMA progress This
* call is meant for systems where the hardware and/or MPI make
* insufficient progress when only calling
* MPI_Win_post/MPI_Win_wait+MPI_Win_start/MPI_Win_get/MPI_Win_complete */
void
cdiPioRDMAProgress
(
void
);
/* cdiPioStreamDefDecomposedVlist: collectively define the vlist assigned to a
...
...
@@ -148,7 +155,7 @@ int cdiPioConfGetCSRole(int confResH);
/* cdiPioConfSetPostCommSetupActions: set function to be called after
* setup of client/server communications of configuration object.
* Deprecated: use cdiPioConfSetCallBackActions with
* trigger == CDIPIO_CALLBACK_POSTCOMMSETUP in new programs */
* trigger == CDIPIO_CALLBACK_POSTCOMMSETUP in new programs
!
*/
void
cdiPioConfSetPostCommSetupActions
(
int
confResH
,
void
(
*
postCommSetupActions
)(
void
));
/* cdiPioConfGetPostCommSetupActions: get function to be called after
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment