Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 host-configs/LLNL/llnl-tpls-base.cmake
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
set(GEOSX_TPL_ROOT_DIR /usr/gapps/GEOSX/thirdPartyLibs CACHE PATH "")
set(GEOSX_TPL_DIR ${GEOSX_TPL_ROOT_DIR}/2024-07-11/install-${CONFIG_NAME}-release CACHE PATH "")
set(GEOSX_TPL_DIR ${GEOSX_TPL_ROOT_DIR}/2024-07-16/install-${CONFIG_NAME}-release CACHE PATH "")
4 changes: 2 additions & 2 deletions unitTests/testUtils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ template< unsigned long THREADS_PER_BLOCK >
using parallelDevicePolicy = RAJA::cuda_exec< THREADS_PER_BLOCK >;


template< typename X, typename Y, size_t BLOCK_SIZE, bool ASYNC >
struct RAJAHelper< RAJA::policy::cuda::cuda_exec_explicit< X, Y, BLOCK_SIZE, ASYNC > >
template< typename X, typename Y, typename C, size_t BLOCK_SIZE, bool ASYNC >
struct RAJAHelper< RAJA::policy::cuda::cuda_exec_explicit< X, Y, C, BLOCK_SIZE, ASYNC > >
{
using ReducePolicy = RAJA::cuda_reduce;
using AtomicPolicy = RAJA::cuda_atomic;
Expand Down