Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ADIOS2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Podhorszki, Norbert
ADIOS2
Commits
bde355d3
Commit
bde355d3
authored
8 years ago
by
Podhorszki, Norbert
Browse files
Options
Downloads
Patches
Plain Diff
fix enums in ADIOS.h
parent
a7699e3d
No related branches found
No related tags found
1 merge request
!8
Integrate groupless
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/ADIOS.h
+6
-6
6 additions, 6 deletions
include/ADIOS.h
with
6 additions
and
6 deletions
include/ADIOS.h
+
6
−
6
View file @
bde355d3
...
...
@@ -37,7 +37,7 @@ namespace adios
/** Use these values in Dims() when defining variables
*/
typedef
enum
{
enum
{
VARYING_DIMENSION
=
-
1
,
//!< VARYING_DIMENSION
LOCAL_VALUE
=
0
,
//!< LOCAL_VALUE
GLOBAL_VALUE
=
1
//!< GLOBAL_VALUE
...
...
@@ -151,7 +151,7 @@ public: // PUBLIC Constructors and Functions define the User Interface with ADIO
* @return Derived class of base Engine depending on Method parameters, shared_ptr for potential flexibility
*/
std
::
shared_ptr
<
Engine
>
Open
(
const
std
::
string
streamName
,
const
std
::
string
accessMode
,
MPI_Comm
mpiComm
,
const
Method
&
method
,
const
enum
IOMode
iomode
);
const
Method
&
method
,
const
IOMode
iomode
);
/**
* @brief Open to Read with a timeout value specified. Creates a new engine from previously defined method
...
...
@@ -164,7 +164,7 @@ public: // PUBLIC Constructors and Functions define the User Interface with ADIO
* @return Derived class of base Engine depending on Method parameters, shared_ptr for potential flexibility
*/
std
::
shared_ptr
<
Engine
>
Open
(
const
std
::
string
streamName
,
const
std
::
string
accessMode
,
MPI_Comm
mpiComm
,
const
Method
&
method
,
const
enum
IOMode
iomode
,
const
Method
&
method
,
const
IOMode
iomode
,
const
float
timeout_sec
);
/**
* @brief Open to Write, Read. Creates a new engine from previously defined method.
...
...
@@ -176,7 +176,7 @@ public: // PUBLIC Constructors and Functions define the User Interface with ADIO
* @return Derived class of base Engine depending on Method parameters, shared_ptr for potential flexibility
*/
std
::
shared_ptr
<
Engine
>
Open
(
const
std
::
string
streamName
,
const
std
::
string
accessMode
,
const
Method
&
method
,
const
enum
IOMode
iomode
);
const
IOMode
iomode
);
/**
...
...
@@ -190,7 +190,7 @@ public: // PUBLIC Constructors and Functions define the User Interface with ADIO
* @return Derived class of base Engine depending on Method parameters, shared_ptr for potential flexibility
*/
std
::
shared_ptr
<
Engine
>
Open
(
const
std
::
string
streamName
,
const
std
::
string
accessMode
,
const
Method
&
method
,
const
enum
IOMode
iomode
,
const
IOMode
iomode
,
const
float
timeout_sec
);
...
...
@@ -204,7 +204,7 @@ public: // PUBLIC Constructors and Functions define the User Interface with ADIO
* @return Derived class of base Engine depending on Method parameters, shared_ptr for potential flexibility
*/
std
::
shared_ptr
<
Engine
>
OpenFileReader
(
const
std
::
string
streamName
,
MPI_Comm
mpiComm
,
const
Method
&
method
,
const
enum
IOMode
iomode
);
const
Method
&
method
,
const
IOMode
iomode
);
/**
* @brief Dumps groups information to a file stream or standard output.
...
...
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