Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AutoPerf
autoperf
Commits
f3736f3c
Commit
f3736f3c
authored
Mar 29, 2021
by
Shane Snyder
Browse files
simplify APMPI counter descriptions
parent
754fc24b
Changes
1
Hide whitespace changes
Inline
Side-by-side
apmpi/util/darshan-apmpi-logutils.c
View file @
f3736f3c
...
...
@@ -279,14 +279,13 @@ static void darshan_log_print_apmpi_description(int ver)
printf
(
"# MPI_TOTAL_COMM_SYNC_TIME_VARIANCE: variance in total sync time across all the processes, if enabled.
\n
"
);
printf
(
"# per-process detailed stats on the usage of various MPI routines:
\n
"
);
printf
(
"# MPI_PROCESSOR_NAME: name of the processor used by the MPI process.
\n
"
);
printf
(
"# MPI_[OP]_*: set of statistics for each instrumented MPI op (e.g., SEND, ALLREDUCE, BCAST, etc.).
\n
"
);
printf
(
"# CALL_COUNT: total call count for an MPI op.
\n
"
);
printf
(
"# TOTAL_BYTES: total bytes (i.e., cumulative across all calls) moved with an MPI op.
\n
"
);
printf
(
"# MSG_SIZE_AGG_*: histogram of total bytes moved for all the calls of an MPI op.
\n
"
);
printf
(
"# TOTAL_TIME: total time (i.e, cumulative across all calls) of an MPI op.
\n
"
);
printf
(
"# MIN_TIME: minimum time across all calls of an MPI op.
\n
"
);
printf
(
"# MAX_TIME: maximum time across all calls of an MPI op.
\n
"
);
printf
(
"# TOTAL_SYNC_TIME: total sync time (cumulative across all calls of an op) of an MPI op, if enabled.
\n
"
);
printf
(
"# MPI_*_CALL_COUNT: total call count for an MPI op.
\n
"
);
printf
(
"# MPI_*_TOTAL_BYTES: total bytes (i.e., cumulative across all calls) moved with an MPI op.
\n
"
);
printf
(
"# MPI_*_MSG_SIZE_AGG_*: histogram of total bytes moved for all the calls of an MPI op.
\n
"
);
printf
(
"# MPI_*_TOTAL_TIME: total time (i.e, cumulative across all calls) of an MPI op.
\n
"
);
printf
(
"# MPI_*_MIN_TIME: minimum time across all calls of an MPI op.
\n
"
);
printf
(
"# MPI_*_MAX_TIME: maximum time across all calls of an MPI op.
\n
"
);
printf
(
"# MPI_*_TOTAL_SYNC_TIME: total sync time (cumulative across all calls of an op) of an MPI op, if enabled.
\n
"
);
printf
(
"# MPI_TOTAL_COMM_TIME: total communication (MPI) time of a process across all the MPI ops.
\n
"
);
printf
(
"# MPI_TOTAL_COMM_SYNC_TIME: total sync time of a process across all the MPI ops, if enabled.
\n
"
);
return
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment