Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ADIOS2 v2.9+ Uses Blosc2 #84

Merged
merged 4 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion recipe/build-libadios.bat
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cmake ^
-DBUILD_TESTING=OFF ^
-DADIOS2_USE_MPI=OFF ^
-DADIOS2_BUILD_EXAMPLES=OFF ^
-DADIOS2_USE_Blosc=ON ^
-DADIOS2_USE_Blosc2=ON ^
-DADIOS2_USE_BZip2=ON ^
-DADIOS2_USE_Fortran=OFF ^
-DADIOS2_USE_HDF5=ON ^
Expand Down
1 change: 1 addition & 0 deletions recipe/build-libadios.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ cmake \
-B build \
-GNinja \
-DADIOS2_BUILD_EXAMPLES=OFF \
-DADIOS2_USE_Blosc2=ON \
-DADIOS2_HAVE_ZFP_CUDA=OFF \
-DADIOS2_INSTALL_GENERATE_CONFIG=OFF \
-DADIOS2_RUN_INSTALL_TEST=ON \
Expand Down
4 changes: 2 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% set name = "adios2" %}
{% set version = "2.9.2" %}
{% set sha256 = "78309297c82a95ee38ed3224c98b93d330128c753a43893f63bbe969320e4979" %}
{% set build = 0 %}
{% set build = 1 %}

# ensure mpi is defined (needed for conda-smithy recipe-lint)
{% set mpi = mpi or 'nompi' %}
Expand Down Expand Up @@ -89,7 +89,7 @@ outputs:
# TODO: Could NOT find ZeroMQ (missing: ZeroMQ_LIBRARY) on Windows
- zeromq >=4.1 # [not win]
- bzip2
- blosc
- c-blosc2
- libpng
- zfp 0.5 # CMake rejects zfp 1.0.0
- zlib
Expand Down
Loading