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
dc7bb5d7
Commit
dc7bb5d7
authored
3 years ago
by
Xingran Wang
Browse files
Options
Downloads
Patches
Plain Diff
display sct report in different layers
parent
c117e14f
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/pio_interface.c
+19
-15
19 additions, 15 deletions
src/pio_interface.c
with
19 additions
and
15 deletions
src/pio_interface.c
+
19
−
15
View file @
dc7bb5d7
...
...
@@ -555,21 +555,25 @@ void new_context(const char *context_name, MPI_Comm comm)
context_handle
=
sct_new_context
(
context_name
,
comm
);
sct_context_start
(
context_handle
);
timer_ioTotal
=
sct_new_timer
(
"IO servers total"
);
timer_getTimeStepData
=
sct_new_timer
(
"getTimeStepData"
);
timer_winStart
=
sct_new_timer
(
"window start"
);
timer_mpi_get
=
sct_new_timer
(
"MPI_Get"
);
timer_winComplete
=
sct_new_timer
(
"window complete"
);
timer_readgetbuffers
=
sct_new_timer
(
"read getbuffers"
);
timer_writeStream
=
sct_new_timer
(
"write GRIB/NetCDF stream"
);
timer_preWriteChunk
=
sct_new_timer
(
"prepare write chunk"
);
timer_writeDeco
=
sct_new_timer
(
"create write deco"
);
timer_yaxt_exchange
=
sct_new_timer
(
"YAXT exchange1"
);
timer_streamWriteVarChunk
=
sct_new_timer
(
"streamWriteVarChunk(F)"
);
timer_writeSlice
=
sct_new_timer
(
"write slice"
);
timer_mpiAllGather
=
sct_new_timer
(
"MPI_Allgather"
);
timer_mpiFileWriteAtAll
=
sct_new_timer
(
"MPI_File_write_at_all"
);
timer_postwritebatch
=
sct_new_timer
(
"post write batch"
);
timer_ioTotal
=
sct_new_timer
(
"IO servers total"
);
timer_getTimeStepData
=
sct_new_timer
(
" L getTimeStepData"
);
timer_winStart
=
sct_new_timer
(
" L window start"
);
timer_mpi_get
=
sct_new_timer
(
" L MPI_Get"
);
timer_winComplete
=
sct_new_timer
(
" L window complete"
);
timer_readgetbuffers
=
sct_new_timer
(
" L read getbuffers"
);
timer_defTimeStep
=
sct_new_timer
(
" L stream define timestep"
);
timer_StreamMappingNew
=
sct_new_timer
(
" L stream mapping create"
);
timer_writeStream
=
sct_new_timer
(
" L write GRIB/NetCDF stream"
);
timer_preWriteChunk
=
sct_new_timer
(
" L prepare write chunk"
);
timer_writeDeco
=
sct_new_timer
(
" L create write deco"
);
timer_yaxt_exchange
=
sct_new_timer
(
" L YAXT exchange1"
);
timer_streamWriteVarChunk
=
sct_new_timer
(
" L NetCDF streamWriteVarChunk(F)"
);
timer_writeSlice
=
sct_new_timer
(
" L write slice to dataset"
);
timer_cdipioFileWrite
=
sct_new_timer
(
" L cdipio file write"
);
timer_mpiAllGather
=
sct_new_timer
(
" L MPI_Allgather"
);
timer_mpiFileWriteAtAll
=
sct_new_timer
(
" L MPI_File_write_at_all"
);
timer_postwritebatch
=
sct_new_timer
(
" L post write batch"
);
}
MPI_Comm
...
...
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