Skip to content

Commit

Permalink
Fixup it doesnt seem like I am allowed to use is_execution_space_v
Browse files Browse the repository at this point in the history
  • Loading branch information
dalg24 committed Jan 3, 2024
1 parent cf5593d commit e4c7d1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/Cabana_Experimental_NeighborList.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ max_reduce( ExecutionSpace const& space, Kokkos::View<D, P...> const& v )
{
using V = Kokkos::View<D, P...>;
static_assert( V::rank == 1 );
static_assert( Kokkos::is_execution_space_v<ExecutionSpace> );
static_assert( Kokkos::is_execution_space<ExecutionSpace>::value );
static_assert(
is_accessible_from<typename V::memory_space, ExecutionSpace>::value );
using Ret = typename Kokkos::View<D, P...>::non_const_value_type;
Expand Down

0 comments on commit e4c7d1f

Please sign in to comment.