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
2143fc3d
Commit
2143fc3d
authored
8 years ago
by
Wang, Ruonan
Browse files
Options
Downloads
Plain Diff
for merge
parents
4fa1c5cf
2841268b
No related branches found
No related tags found
1 merge request
!8
Integrate groupless
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile
+1
-1
1 addition, 1 deletion
Makefile
buildDataMan.sh
+1
-1
1 addition, 1 deletion
buildDataMan.sh
examples/hello/datamanReader/Makefile
+3
-3
3 additions, 3 deletions
examples/hello/datamanReader/Makefile
include/engine/dataman/DataManWriter.h
+0
-1
0 additions, 1 deletion
include/engine/dataman/DataManWriter.h
with
5 additions
and
6 deletions
Makefile
+
1
−
1
View file @
2143fc3d
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
# Author: wfg
# Author: wfg
#DEFAULT COMPILERS IN PATH, LIBS will be modified in Makefile.libs
#DEFAULT COMPILERS IN PATH, LIBS will be modified in Makefile.libs
CC
:=
g++
CC
:=
g++
-6
AR
:=
ar
AR
:=
ar
MPICC
:=
mpic++
MPICC
:=
mpic++
LIBS
:=
LIBS
:=
...
...
This diff is collapsed.
Click to expand it.
buildDataMan.sh
+
1
−
1
View file @
2143fc3d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
# Created on: Feb 9, 2017
# Created on: Feb 9, 2017
# Author: wfg
# Author: wfg
DATAMAN_LOCATION
=
/
home
/w
f
g/
Applications
/DataMan
DATAMAN_LOCATION
=
/
Users
/w
4
g/
Dropbox/lib
/DataMan
echo
"######################################################################################"
echo
"######################################################################################"
echo
"Start building ADIOS ./lib/libadios.a ./libadios_nompi.a with DataMan library"
echo
"Start building ADIOS ./lib/libadios.a ./libadios_nompi.a with DataMan library"
echo
"######################################################################################"
echo
"######################################################################################"
...
...
This diff is collapsed.
Click to expand it.
examples/hello/datamanReader/Makefile
+
3
−
3
View file @
2143fc3d
...
@@ -28,16 +28,16 @@ CFLAGS=-Wall -O0 -g -Wpedantic -std=c++11
...
@@ -28,16 +28,16 @@ CFLAGS=-Wall -O0 -g -Wpedantic -std=c++11
#SYSTEM LIBS
#SYSTEM LIBS
LIB
+=
-lpthread
LIB
+=
-lpthread
LIB_NOMPI
+=
-lpthread
LIB_NOMPI
+=
-ldl
-lpthread
all
:
mpi nompi
all
:
mpi nompi
mpi
:
$(ADIOS_LIB) $(ADIOS_HFiles)
mpi
:
$(ADIOS_LIB) $(ADIOS_HFiles)
$(
MPICC
)
$(
CFLAGS
)
$(
INC
)
-DHAVE_MPI
-DHAVE_DATAMAN
$(
BASE_NAME
)
.cpp
-o
$(
BASE_NAME
)
.exe
$(
LIB
)
-lpthread
$(
MPICC
)
$(
CFLAGS
)
$(
INC
)
-DHAVE_MPI
-DHAVE_DATAMAN
$(
BASE_NAME
)
.cpp
-o
$(
BASE_NAME
)
.exe
$(
LIB
)
nompi
:
$(ADIOS_NOMPI_LIB) $(NoMPI_HFiles)
nompi
:
$(ADIOS_NOMPI_LIB) $(NoMPI_HFiles)
$(
CC
)
$(
CFLAGS
)
$(
INC
)
-DHAVE_DATAMAN
$(
BASE_NAME
)
_nompi.cpp
-o
$(
BASE_NAME
)
_nompi.exe
$(
LIB_NOMPI
)
-lpthread
$(
CC
)
$(
CFLAGS
)
$(
INC
)
-DHAVE_DATAMAN
$(
BASE_NAME
)
_nompi.cpp
-o
$(
BASE_NAME
)
_nompi.exe
$(
LIB_NOMPI
)
clean
:
clean
:
rm
*
.exe
;
rm
*
.exe
;
...
...
This diff is collapsed.
Click to expand it.
include/engine/dataman/DataManWriter.h
+
0
−
1
View file @
2143fc3d
...
@@ -110,7 +110,6 @@ private:
...
@@ -110,7 +110,6 @@ private:
m_WrittenVariables
.
insert
(
variable
.
m_Name
);
m_WrittenVariables
.
insert
(
variable
.
m_Name
);
DataManager
dataManager
;
DataManager
dataManager
;
dataManager
.
add_stream
(
"0"
,
"0"
,
1
,
1
,
1
,
"0"
);
//This part will go away, this is just to monitor variables per rank
//This part will go away, this is just to monitor variables per rank
std
::
cout
<<
"I am hooked to the DataMan library
\n
"
;
std
::
cout
<<
"I am hooked to the DataMan library
\n
"
;
...
...
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