::dealii::MemorySpace::Default::kokkos_space::execution_space>(
exec, optional_offset, optional_offset + size),
KOKKOS_LAMBDA(size_type i, Number & update) {
-#if KOKKOS_VERSION < 30400
- update += std::abs(data.values(i));
-#elif KOKKOS_VERSION < 30700
+#if KOKKOS_VERSION < 30700
update += Kokkos::Experimental::fabs(data.values(i));
#else
update += Kokkos::abs(data.values(i));
::dealii::MemorySpace::Default::kokkos_space::execution_space>(
exec, 0, size),
KOKKOS_LAMBDA(size_type i, Number & update) {
-#if KOKKOS_VERSION < 30400
- update += std::pow(fabs(data.values(i)), exp);
-#elif KOKKOS_VERSION < 30700
+#if KOKKOS_VERSION < 30700
update += Kokkos::Experimental::pow(
Kokkos::Experimental::fabs(data.values(i)), exp);
#else
MemorySpace::Default::kokkos_space::execution_space exec;
Kokkos::TeamPolicy<
MemorySpace::Default::kokkos_space::execution_space>
- team_policy(
-#if KOKKOS_VERSION >= 20900
- exec,
-#endif
- n_cells[i],
- Kokkos::AUTO);
+ team_policy(exec, n_cells[i], Kokkos::AUTO);
Kokkos::parallel_for(
"dealii::MatrixFree::evaluate_coeff_cell_loop",
KOKKOS_LAMBDA(const Kokkos::TeamPolicy<
MemorySpace::Default::kokkos_space::execution_space>::
member_type &team_member) {
- Kokkos::parallel_for(
-#if KOKKOS_VERSION >= 20900
- Kokkos::TeamVectorRange(team_member, n_q_points),
-#else
- Kokkos::TeamThreadRange(team_member, n_q_points),
-#endif
- [&](const int q_point) {
- const int cell = team_member.league_rank();
-
- Data data{team_member,
- cell,
- &color_data,
- /*shared_data*/ nullptr};
-
- func(&data, cell, q_point);
- });
+ Kokkos::parallel_for(Kokkos::TeamVectorRange(team_member,
+ n_q_points),
+ [&](const int q_point) {
+ const int cell = team_member.league_rank();
+
+ Data data{team_member,
+ cell,
+ &color_data,
+ /*shared_data*/ nullptr};
+
+ func(&data, cell, q_point);
+ });
});
}
}
MemorySpace::Default::kokkos_space::execution_space exec;
Kokkos::TeamPolicy<
MemorySpace::Default::kokkos_space::execution_space>
- team_policy(
-#if KOKKOS_VERSION >= 20900
- exec,
-#endif
- n_cells[color],
- Kokkos::AUTO);
+ team_policy(exec, n_cells[color], Kokkos::AUTO);
internal::
{
Kokkos::TeamPolicy<
MemorySpace::Default::kokkos_space::execution_space>
- team_policy(
-#if KOKKOS_VERSION >= 20900
- exec,
-#endif
- n_cells[0],
- Kokkos::AUTO);
+ team_policy(exec, n_cells[0], Kokkos::AUTO);
internal::ApplyKernel<dim, Number, Functor, false> apply_kernel(
func, get_data(0), src, dst);
{
Kokkos::TeamPolicy<
MemorySpace::Default::kokkos_space::execution_space>
- team_policy(
-#if KOKKOS_VERSION >= 20900
- exec,
-#endif
- n_cells[1],
- Kokkos::AUTO);
+ team_policy(exec, n_cells[1], Kokkos::AUTO);
internal::ApplyKernel<dim, Number, Functor, false> apply_kernel(
func, get_data(1), src, dst);
{
Kokkos::TeamPolicy<
MemorySpace::Default::kokkos_space::execution_space>
- team_policy(
-#if KOKKOS_VERSION >= 20900
- exec,
-#endif
- n_cells[2],
- Kokkos::AUTO);
+ team_policy(exec, n_cells[2], Kokkos::AUTO);
internal::ApplyKernel<dim, Number, Functor, false> apply_kernel(
func, get_data(2), src, dst);
{
Kokkos::TeamPolicy<
MemorySpace::Default::kokkos_space::execution_space>
- team_policy(
-#if KOKKOS_VERSION >= 20900
- exec,
-#endif
- n_cells[i],
- Kokkos::AUTO);
+ team_policy(exec, n_cells[i], Kokkos::AUTO);
internal::ApplyKernel<dim, Number, Functor, false>
apply_kernel(func, get_data(i), src, dst);
{
Kokkos::TeamPolicy<
MemorySpace::Default::kokkos_space::execution_space>
- team_policy(
-#if KOKKOS_VERSION >= 20900
- exec,
-#endif
- n_cells[i],
- Kokkos::AUTO);
+ team_policy(exec, n_cells[i], Kokkos::AUTO);
internal::ApplyKernel<dim, Number, Functor, false> apply_kernel(
func, get_data(i), ghosted_src, ghosted_dst);
}
#endif
- // Let's abort the program here. On the host, we need to call
- // std::abort, on devices we need to do something different.
- // Kokkos::abort() does the right thing in all circumstances.
-
-#if KOKKOS_VERSION < 30200
- if constexpr (std::is_same_v<Kokkos::DefaultExecutionSpace,
- Kokkos::DefaultHostExecutionSpace>)
- {
- // FIXME_KOKKOS Older Kokkos versions don't declare Kokkos::abort as
- // [[noreturn]]. In case Kokkos is only configured with host backends,
- // we can just use std::abort instead.
- std::abort();
- }
- else
-#endif
- {
- Kokkos::abort(
- "Abort() was called during dealing with an assertion or exception.");
- }
+ // Let's abort the program here. On the host, we need to call
+ // std::abort, on devices we need to do something different.
+ // Kokkos::abort() does the right thing in all circumstances.
+ Kokkos::abort(
+ "Abort() was called during dealing with an assertion or exception.");
}