Skip to content

Commit

Permalink
2d restarts has box inconsistency? :/
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipDeegan committed Feb 8, 2024
1 parent 3b457ee commit 2c3bc9a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions res/cmake/dep/highfive.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ if(HighFive)
set (HIGHFIVE_SRC ${CMAKE_CURRENT_SOURCE_DIR}/subprojects/highfive)

if (NOT EXISTS ${HIGHFIVE_SRC})
execute_process(
COMMAND ${Git} clone https://github.com/BlueBrain/HighFive ${HIGHFIVE_SRC} -b master --depth 1
execute_process( # master API breaks us
COMMAND ${Git} clone https://github.com/BlueBrain/HighFive ${HIGHFIVE_SRC} -b v2.9.0 --depth 1
)

else()
if(devMode)
message("downloading latest HighFive updates")
execute_process(COMMAND ${Git} pull origin master WORKING_DIRECTORY ${HIGHFIVE_SRC})
# message("downloading latest HighFive updates")
# execute_process(COMMAND ${Git} pull origin master WORKING_DIRECTORY ${HIGHFIVE_SRC})
endif(devMode)
endif()

Expand Down
4 changes: 2 additions & 2 deletions tests/simulator/test_restarts.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@


def permute(dic, expected_num_levels):
from pyphare.pharein.simulation import supported_dimensions
# from pyphare.pharein.simulation import supported_dimensions # eventually

dims = supported_dimensions()
dims = [1] # supported_dimensions()
return [
[dim, interp, dic, expected_num_levels] for dim in dims for interp in [1, 2, 3]
]
Expand Down

0 comments on commit 2c3bc9a

Please sign in to comment.