Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
darshan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
72
Issues
72
List
Boards
Labels
Milestones
Merge Requests
5
Merge Requests
5
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
darshan
darshan
Commits
90b7a90e
Commit
90b7a90e
authored
Aug 09, 2016
by
Shane Snyder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix to get output ordering right in shutdown_bench
parent
beac22fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
darshan-runtime/lib/darshan-core.c
darshan-runtime/lib/darshan-core.c
+4
-4
No files found.
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
"
);
fprintf
(
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
"
);
fprintf
(
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
"
);
fprintf
(
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
"
);
fprintf
(
stderr
,
"# 1024 shared files per proc
\n
"
);
DARSHAN_MPI_CALL
(
PMPI_Barrier
)(
MPI_COMM_WORLD
);
darshan_core_shutdown
();
darshan_core
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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