Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
S
src
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Code Review
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
H5hut
src
Commits
078a51d6
Commit
078a51d6
authored
Jan 05, 2018
by
gsell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
examples/H5/openclose.c: explizit set verbosity of output
parent
06a941eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
examples/H5/openclose.c
examples/H5/openclose.c
+10
-2
No files found.
examples/H5/openclose.c
View file @
078a51d6
/*
Copyright (c) 2006-201
5
, The Regents of the University of California,
Copyright (c) 2006-201
8
, The Regents of the University of California,
through Lawrence Berkeley National Laboratory (subject to receipt of any
required approvals from the U.S. Dept. of Energy) and the Paul Scherrer
Institut (Switzerland). All rights reserved.
...
...
@@ -11,6 +11,14 @@
#include "examples.h"
/*
Use H5_DEBUG_ALL to get full debug output
*/
#if !defined(VERBOSITY)
#define VERBOSITY H5_VERBOSE_ERROR
/* #undef VERBOSITY H5_DEBUG_ALL */
#endif
int
main
(
int
argc
,
...
...
@@ -19,7 +27,7 @@ main (
MPI_Comm
comm
=
MPI_COMM_WORLD
;
MPI_Init
(
&
argc
,
&
argv
);
H5SetVerbosityLevel
(
VERBOSITY
);
h5_prop_t
prop
=
H5CreateFileProp
();
H5SetPropFileMPIOCollective
(
prop
,
&
comm
);
h5_file_t
f
=
H5OpenFile
(
"testfile.h5"
,
H5_O_WRONLY
,
prop
);
...
...
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