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
darshan
darshan
Commits
90b7a90e
Commit
90b7a90e
authored
Aug 09, 2016
by
Shane Snyder
Browse files
fix to get output ordering right in shutdown_bench
parent
beac22fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
darshan-runtime/lib/darshan-core.c
View file @
90b7a90e
...
...
@@ -1771,7 +1771,7 @@ void darshan_shutdown_bench(int argc, char **argv)
darshan_mpiio_shutdown_bench_setup
(
1
);
if
(
my_rank
==
0
)
printf
(
"# 1 unique file per proc
\n
"
);
f
printf
(
stderr
,
"# 1 unique file per proc
\n
"
);
DARSHAN_MPI_CALL
(
PMPI_Barrier
)(
MPI_COMM_WORLD
);
darshan_core_shutdown
();
darshan_core
=
NULL
;
...
...
@@ -1786,7 +1786,7 @@ void darshan_shutdown_bench(int argc, char **argv)
darshan_mpiio_shutdown_bench_setup
(
2
);
if
(
my_rank
==
0
)
printf
(
"# 1 shared file per proc
\n
"
);
f
printf
(
stderr
,
"# 1 shared file per proc
\n
"
);
DARSHAN_MPI_CALL
(
PMPI_Barrier
)(
MPI_COMM_WORLD
);
darshan_core_shutdown
();
darshan_core
=
NULL
;
...
...
@@ -1801,7 +1801,7 @@ void darshan_shutdown_bench(int argc, char **argv)
darshan_mpiio_shutdown_bench_setup
(
3
);
if
(
my_rank
==
0
)
printf
(
"# 1024 unique files per proc
\n
"
);
f
printf
(
stderr
,
"# 1024 unique files per proc
\n
"
);
DARSHAN_MPI_CALL
(
PMPI_Barrier
)(
MPI_COMM_WORLD
);
darshan_core_shutdown
();
darshan_core
=
NULL
;
...
...
@@ -1816,7 +1816,7 @@ void darshan_shutdown_bench(int argc, char **argv)
darshan_mpiio_shutdown_bench_setup
(
4
);
if
(
my_rank
==
0
)
printf
(
"# 1024 shared files per proc
\n
"
);
f
printf
(
stderr
,
"# 1024 shared files per proc
\n
"
);
DARSHAN_MPI_CALL
(
PMPI_Barrier
)(
MPI_COMM_WORLD
);
darshan_core_shutdown
();
darshan_core
=
NULL
;
...
...
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