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
84e1a29a
Commit
84e1a29a
authored
7 years ago
by
Atkins, Charles Vernon
Browse files
Options
Downloads
Patches
Plain Diff
Added a stub entry in both ADIOS and DataMan for ZFP support
parent
b77c9f76
No related branches found
No related tags found
1 merge request
!81
Add zmq and zfp depends
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+4
-2
4 additions, 2 deletions
CMakeLists.txt
source/adios2/CMakeLists.txt
+6
-0
6 additions, 0 deletions
source/adios2/CMakeLists.txt
source/dataman/CMakeLists.txt
+9
-0
9 additions, 0 deletions
source/dataman/CMakeLists.txt
with
19 additions
and
2 deletions
CMakeLists.txt
+
4
−
2
View file @
84e1a29a
...
...
@@ -71,6 +71,7 @@ if(ADIOS_USE_MPI)
add_definitions
(
-DOMPI_SKIP_MPICXX
)
endif
()
option
(
ADIOS_USE_BZip2
"Enable support for BZip2 transforms"
OFF
)
option
(
ADIOS_USE_ZFP
"Enable support for ZFP transforms"
OFF
)
option
(
ADIOS_USE_ADIOS1
"Enable support for the ADIOS 1 engine"
OFF
)
option
(
ADIOS_USE_HDF5
"Enable support for the HDF5 engine"
OFF
)
...
...
@@ -79,7 +80,7 @@ option(ADIOS_USE_HDF5 "Enable support for the HDF5 engine" OFF)
set
(
ADIOS_USE_DataMan
${
SHARED_LIBS_SUPPORTED
}
)
include
(
GenerateADIOSConfig
)
GenerateADIOSConfig
(
MPI BZip2 ADIOS1 HDF5 DataMan
)
GenerateADIOSConfig
(
MPI
ZFP
BZip2 ADIOS1 HDF5 DataMan
)
install
(
FILES
${
ADIOS_BINARY_DIR
}
/adios2/ADIOSConfig.h
DESTINATION
${
CMAKE_INSTALL_INCLUDEDIR
}
/adios2
...
...
@@ -123,7 +124,7 @@ message("")
message
(
"ADIOS2 build configuration:"
)
message
(
" ADIOS Version:
${
ADIOS_VERSION
}
"
)
message
(
" C++ Compiler :
${
CMAKE_CXX_COMPILER_ID
}
${
CMAKE_CXX_COMPILER_VERSION
}
${
CMAKE_CXX_COMPILER_WRAPPER
}
"
)
message
(
"
${
CMAKE_CXX_COMPILER
}
"
)
message
(
"
${
CMAKE_CXX_COMPILER
}
"
)
message
(
""
)
message
(
" Installation prefix:
${
CMAKE_INSTALL_PREFIX
}
"
)
message
(
" Features:"
)
...
...
@@ -136,6 +137,7 @@ message(" Build Type: ${CMAKE_BUILD_TYPE}")
message
(
" Testing:
${
BUILD_TESTING
}
"
)
message
(
" MPI:
${
ADIOS_USE_MPI
}
"
)
message
(
" BZip2:
${
ADIOS_USE_BZip2
}
"
)
message
(
" ZFP:
${
ADIOS_USE_ZFP
}
"
)
message
(
" ADIOS1:
${
ADIOS_USE_ADIOS1
}
"
)
message
(
" DataMan:
${
ADIOS_USE_DataMan
}
"
)
message
(
" HDF5:
${
ADIOS_USE_HDF5
}
"
)
...
...
This diff is collapsed.
Click to expand it.
source/adios2/CMakeLists.txt
+
6
−
0
View file @
84e1a29a
...
...
@@ -57,6 +57,12 @@ if(ADIOS_USE_BZip2)
target_link_libraries
(
adios2 PRIVATE BZip2::BZip2
)
endif
()
#if(ADIOS_USE_ZFP)
# find_package(ZFP REQUIRED)
# target_sources(adios2 PRIVATE transform/ZFP.cpp)
# target_link_libraries(adios2 PRIVATE zfp::zfp)
#endif()
if
(
ADIOS_USE_MPI
)
find_package
(
MPI COMPONENTS C REQUIRED
)
target_include_directories
(
adios2 PUBLIC
${
MPI_C_INCLUDE_PATH
}
)
...
...
This diff is collapsed.
Click to expand it.
source/dataman/CMakeLists.txt
+
9
−
0
View file @
84e1a29a
...
...
@@ -31,6 +31,15 @@ list(APPEND dataman_targets cacheman)
# list(APPEND dataman_targets zmqman)
#endif()
#if(ADIOS_USE_ZFP)
# find_package(ZFP REQUIRED)
#
# add_library(zfpman MODULE ZfpMan.h ZfpMan.cpp)
# target_link_libraries(zfpman PRIVATE dataman zfp::zfp)
#
# list(APPEND dataman_targets zfpman)
#endif()
install
(
TARGETS
${
dataman_targets
}
EXPORT adios2
RUNTIME DESTINATION
${
CMAKE_INSTALL_BINDIR
}
...
...
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