Skip to content

Commit

Permalink
Remove HIGHFIVE_PARALLEL_HDF5. (#1003)
Browse files Browse the repository at this point in the history
Choose parallel HDF5 is done via `HDF5_PREFER_PARALLEL`. Internally HighFive checks `HDF5_IS_PARALLEL`.
  • Loading branch information
1uc authored May 17, 2024
1 parent 2de17ef commit 96d2100
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Build
run: |
CMAKE_OPTIONS=(-DHIGHFIVE_PARALLEL_HDF5:BOOL=ON ${{ matrix.config.flags }})
CMAKE_OPTIONS=(-DHDF5_PREFER_PARALLEL:BOOL=ON ${{ matrix.config.flags }})
source $GITHUB_WORKSPACE/.github/build.sh
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ foreach(test_name tests_high_five_base tests_high_five_multi_dims tests_high_fiv
catch_discover_tests(${test_name})
endforeach()

if(HIGHFIVE_PARALLEL_HDF5)
if(HDF5_IS_PARALLEL)
set(tests_parallel_src "tests_high_five_parallel.cpp")

## parallel MPI tests
Expand Down

0 comments on commit 96d2100

Please sign in to comment.