* @ingroup Exceptions
*/
#ifdef DEBUG
-# if KOKKOS_VERSION >= 30600
+# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0)
# ifdef DEAL_II_HAVE_BUILTIN_EXPECT
# define Assert(cond, exc) \
do \
} \
while (false)
# endif /*ifdef DEAL_II_HAVE_BUILTIN_EXPECT*/
-# else /*if KOKKOS_VERSION >= 30600*/
+# else /*if DEAL_II_KOKKOS_VERSION_GTE(3,6,0)*/
# ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_HOST
# ifdef DEAL_II_HAVE_BUILTIN_EXPECT
# define Assert(cond, exc) \
// all having to include Kokkos headers, we have to do it here:
DEAL_II_DISABLE_EXTRA_DIAGNOSTICS
#include <Kokkos_Macros.hpp>
-#if KOKKOS_VERSION >= 40200
+#if DEAL_II_KOKKOS_VERSION_GTE(4, 2, 0)
# include <Kokkos_Abort.hpp>
#else
# include <Kokkos_Core.hpp>
* Kokkos View owning a host buffer used for MPI communication.
*/
// FIXME Should we move this somewhere else?
-#if KOKKOS_VERSION < 40000
- Kokkos::View<T *, Kokkos::HostSpace> values_host_buffer;
-#else
+#if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0)
Kokkos::View<T *, Kokkos::SharedHostPinnedSpace> values_host_buffer;
+#else
+ Kokkos::View<T *, Kokkos::HostSpace> values_host_buffer;
#endif
/**
MemorySpaceData<T, MemorySpace>::MemorySpaceData()
: values_host_buffer(
(dealii::internal::ensure_kokkos_initialized(),
-# if KOKKOS_VERSION < 40000
- Kokkos::View<T *, Kokkos::HostSpace>("host buffer", 0)))
-# else
+# if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0)
Kokkos::View<T *, Kokkos::SharedHostPinnedSpace>("host pinned buffer",
0)))
+# else
+ Kokkos::View<T *, Kokkos::HostSpace>("host buffer", 0)))
# endif
, values(Kokkos::View<T *, typename MemorySpace::kokkos_space>(
"memoryspace data",
* a rank-1 tensor, then we simply need an array of scalars.
* Otherwise, it is an array of tensors one rank lower.
*/
-#if KOKKOS_VERSION >= 30700
+#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0)
std::conditional_t<rank_ == 1,
Kokkos::Array<Number, dim>,
Kokkos::Array<Tensor<rank_ - 1, dim, Number>, dim>>
constexpr DEAL_II_HOST_DEVICE_ALWAYS_INLINE void
multiply_assign_scalar(std::complex<Number> &val, const OtherNumber &s)
{
-# if KOKKOS_VERSION >= 30600
+# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0)
KOKKOS_IF_ON_HOST((val *= s;))
KOKKOS_IF_ON_DEVICE(({
(void)val;
namespace TensorInitialization
{
template <int rank, int dim, typename Number, std::size_t... I>
-# if KOKKOS_VERSION >= 30700
+# if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0)
constexpr Kokkos::Array<typename Tensor<rank, dim, Number>::value_type, dim>
# else
constexpr std::array<typename Tensor<rank, dim, Number>::value_type, dim>
#if defined(DEBUG) && !defined(DEAL_II_CXX14_CONSTEXPR_BUG)
// Up to __builtin_expect this is the same code as in the 'Assert' macro.
// The call to __builtin_expect turns out to be problematic.
-# if KOKKOS_VERSION >= 30600
+# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0)
KOKKOS_IF_ON_HOST(({
if (!(iexp >= 0))
::dealii::deal_II_exceptions::internals::issue_error_noreturn(
{
if (comm_shared == MPI_COMM_SELF)
{
-#if KOKKOS_VERSION >= 30600
+#if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0)
Kokkos::resize(Kokkos::WithoutInitializing,
data.values,
new_alloc_size);
data.values.size() == 0),
ExcInternalError());
-#if KOKKOS_VERSION >= 30600
+#if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0)
Kokkos::resize(Kokkos::WithoutInitializing,
data.values,
new_alloc_size);
::dealii::MemorySpace::Default::kokkos_space::execution_space>(
exec, 0, size),
KOKKOS_LAMBDA(size_type i, RealType & update) {
-#if KOKKOS_VERSION < 30700
+#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0)
+ update = Kokkos::fmax(update, Kokkos::abs(data.values(i)));
+#else
update = Kokkos::Experimental::fmax(
update, Kokkos::Experimental::fabs(data.values(i)));
-#else
- update = Kokkos::fmax(update, Kokkos::abs(data.values(i)));
#endif
},
Kokkos::Max<RealType, Kokkos::HostSpace>(result));
if (std::is_same_v<MemorySpaceType, dealii::MemorySpace::Default>)
{
if (import_data.values_host_buffer.size() == 0)
-# if KOKKOS_VERSION >= 30600
+# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0)
Kokkos::resize(Kokkos::WithoutInitializing,
import_data.values_host_buffer,
partitioner->n_import_indices());
# endif
{
if (import_data.values.size() == 0)
-# if KOKKOS_VERSION >= 30600
+# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0)
Kokkos::resize(Kokkos::WithoutInitializing,
import_data.values,
partitioner->n_import_indices());
// uses a view of the array and thus we need the data on the host to
// outlive the scope of the function.
data.values_host_buffer =
-# if KOKKOS_VERSION < 40000
- Kokkos::create_mirror_view_and_copy(Kokkos::HostSpace{},
+# if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0)
+ Kokkos::create_mirror_view_and_copy(Kokkos::SharedHostPinnedSpace{},
data.values);
# else
- Kokkos::create_mirror_view_and_copy(Kokkos::SharedHostPinnedSpace{},
+ Kokkos::create_mirror_view_and_copy(Kokkos::HostSpace{},
data.values);
# endif
partitioner->import_from_ghosted_array_start(
if (std::is_same_v<MemorySpaceType, MemorySpace::Default>)
{
if (import_data.values_host_buffer.size() == 0)
-# if KOKKOS_VERSION >= 30600
+# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0)
Kokkos::resize(Kokkos::WithoutInitializing,
import_data.values_host_buffer,
partitioner->n_import_indices());
# endif
{
if (import_data.values.size() == 0)
-# if KOKKOS_VERSION >= 30600
+# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0)
Kokkos::resize(Kokkos::WithoutInitializing,
import_data.values,
partitioner->n_import_indices());
// uses a view of the array and thus we need the data on the host to
// outlive the scope of the function.
data.values_host_buffer =
-# if KOKKOS_VERSION < 40000
- Kokkos::create_mirror_view_and_copy(Kokkos::HostSpace{},
+# if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0)
+ Kokkos::create_mirror_view_and_copy(Kokkos::SharedHostPinnedSpace{},
data.values);
# else
- Kokkos::create_mirror_view_and_copy(Kokkos::SharedHostPinnedSpace{},
+ Kokkos::create_mirror_view_and_copy(Kokkos::HostSpace{},
data.values);
# endif
::dealii::MemorySpace::Default::kokkos_space::execution_space>(
exec, optional_offset, optional_offset + size),
KOKKOS_LAMBDA(size_type i, Number & update) {
-#if KOKKOS_VERSION < 30700
- update += Kokkos::Experimental::fabs(data.values(i));
-#else
+#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0)
update += Kokkos::abs(data.values(i));
+#else
+ update += Kokkos::Experimental::fabs(data.values(i));
#endif
},
sum);
::dealii::MemorySpace::Default::kokkos_space::execution_space>(
exec, 0, size),
KOKKOS_LAMBDA(size_type i, Number & update) {
-#if KOKKOS_VERSION < 30700
+#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0)
+ update += Kokkos::pow(Kokkos::abs(data.values(i)), exp);
+#else
update += Kokkos::Experimental::pow(
Kokkos::Experimental::fabs(data.values(i)), exp);
-#else
- update += Kokkos::pow(Kokkos::abs(data.values(i)), exp);
#endif
},
sum);
JxW_host;
typename std::remove_reference_t<
decltype(data->inv_jacobian[color])>::HostMirror inv_jacobian_host;
-#if KOKKOS_VERSION >= 30600
+#if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0)
auto local_to_global_host =
Kokkos::create_mirror_view(Kokkos::WithoutInitializing,
data->local_to_global[color]);
-#if KOKKOS_VERSION >= 40000
+#if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0)
/**
* Helper function for apply() in 1D
*/
const ViewTypeIn in,
ViewTypeOut out)
{
-#if KOKKOS_VERSION >= 40000
+#if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0)
if constexpr (dim == 1)
apply_1d<n_rows, n_columns, direction, Number, contract_over_rows, add>(
team_member, shape_data, in, out);
argv_new.push_back(arg);
std::stringstream threads_flag;
-#if KOKKOS_VERSION >= 30700
+#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0)
threads_flag << "--kokkos-num-threads=" << MultithreadInfo::n_threads();
#else
threads_flag << "--kokkos-threads=" << MultithreadInfo::n_threads();
ensure_kokkos_initialized()
{
if (!Kokkos::is_initialized()
-#if KOKKOS_VERSION >= 30700
+#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0)
&& !Kokkos::is_finalized()
#endif
)
// only execute once
static bool dummy = []() {
dealii_initialized_kokkos = true;
-#if KOKKOS_VERSION >= 30700
+#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0)
const auto settings =
Kokkos::InitializationSettings().set_num_threads(
MultithreadInfo::n_threads());