23 #ifndef KOKKOS_DYNRANKVIEW_HPP
24 #define KOKKOS_DYNRANKVIEW_HPP
25 #ifndef KOKKOS_IMPL_PUBLIC_INCLUDE
26 #define KOKKOS_IMPL_PUBLIC_INCLUDE
27 #define KOKKOS_IMPL_PUBLIC_INCLUDE_NOTDEFINED_DYNRANKVIEW
30 #include <Kokkos_Core.hpp>
31 #include <impl/Kokkos_Error.hpp>
32 #include <type_traits>
36 template <
typename DataType,
class... Properties>
41 template <
typename Specialize>
42 struct DynRankDimTraits {
43 enum :
size_t { unspecified = KOKKOS_INVALID_INDEX };
46 KOKKOS_INLINE_FUNCTION
47 static size_t computeRank(
const size_t N0,
const size_t N1,
const size_t N2,
48 const size_t N3,
const size_t N4,
const size_t N5,
49 const size_t N6,
const size_t ) {
51 (N6 == unspecified && N5 == unspecified && N4 == unspecified &&
52 N3 == unspecified && N2 == unspecified && N1 == unspecified &&
55 : ((N6 == unspecified && N5 == unspecified && N4 == unspecified &&
56 N3 == unspecified && N2 == unspecified && N1 == unspecified)
58 : ((N6 == unspecified && N5 == unspecified &&
59 N4 == unspecified && N3 == unspecified &&
62 : ((N6 == unspecified && N5 == unspecified &&
63 N4 == unspecified && N3 == unspecified)
65 : ((N6 == unspecified && N5 == unspecified &&
68 : ((N6 == unspecified &&
71 : ((N6 == unspecified)
77 template <
typename Layout>
78 KOKKOS_INLINE_FUNCTION
static size_t computeRank(
const Layout& layout) {
79 return computeRank(layout.dimension[0], layout.dimension[1],
80 layout.dimension[2], layout.dimension[3],
81 layout.dimension[4], layout.dimension[5],
82 layout.dimension[6], layout.dimension[7]);
86 template <
typename Layout,
typename... P>
87 KOKKOS_INLINE_FUNCTION
static size_t computeRank(
88 const Kokkos::Impl::ViewCtorProp<P...>& ,
89 const Layout& layout) {
90 return computeRank(layout);
95 template <
typename Layout>
96 KOKKOS_INLINE_FUNCTION
static std::enable_if_t<
97 (std::is_same<Layout, Kokkos::LayoutRight>::value ||
98 std::is_same<Layout, Kokkos::LayoutLeft>::value),
100 createLayout(
const Layout& layout) {
101 return Layout(layout.dimension[0] != unspecified ? layout.dimension[0] : 1,
102 layout.dimension[1] != unspecified ? layout.dimension[1] : 1,
103 layout.dimension[2] != unspecified ? layout.dimension[2] : 1,
104 layout.dimension[3] != unspecified ? layout.dimension[3] : 1,
105 layout.dimension[4] != unspecified ? layout.dimension[4] : 1,
106 layout.dimension[5] != unspecified ? layout.dimension[5] : 1,
107 layout.dimension[6] != unspecified ? layout.dimension[6] : 1,
108 layout.dimension[7] != unspecified ? layout.dimension[7] : 1);
112 template <
typename Layout>
113 KOKKOS_INLINE_FUNCTION
static std::enable_if_t<
114 (std::is_same<Layout, Kokkos::LayoutStride>::value), Layout>
115 createLayout(
const Layout& layout) {
116 return Layout(layout.dimension[0] != unspecified ? layout.dimension[0] : 1,
118 layout.dimension[1] != unspecified ? layout.dimension[1] : 1,
120 layout.dimension[2] != unspecified ? layout.dimension[2] : 1,
122 layout.dimension[3] != unspecified ? layout.dimension[3] : 1,
124 layout.dimension[4] != unspecified ? layout.dimension[4] : 1,
126 layout.dimension[5] != unspecified ? layout.dimension[5] : 1,
128 layout.dimension[6] != unspecified ? layout.dimension[6] : 1,
130 layout.dimension[7] != unspecified ? layout.dimension[7] : 1,
135 template <
typename Traits,
typename... P>
136 KOKKOS_INLINE_FUNCTION
static std::enable_if_t<
137 (std::is_same<
typename Traits::array_layout,
139 std::is_same<typename Traits::array_layout, Kokkos::LayoutLeft>::value ||
140 std::is_same<
typename Traits::array_layout,
142 typename Traits::array_layout>
143 createLayout(
const Kokkos::Impl::ViewCtorProp<P...>& ,
144 const typename Traits::array_layout& layout) {
145 return createLayout(layout);
152 template <
typename ViewType,
typename ViewArg>
153 static ViewType createView(
const ViewArg& arg,
const size_t N0,
154 const size_t N1,
const size_t N2,
const size_t N3,
155 const size_t N4,
const size_t N5,
const size_t N6,
157 return ViewType(arg, N0 != unspecified ? N0 : 1, N1 != unspecified ? N1 : 1,
158 N2 != unspecified ? N2 : 1, N3 != unspecified ? N3 : 1,
159 N4 != unspecified ? N4 : 1, N5 != unspecified ? N5 : 1,
160 N6 != unspecified ? N6 : 1, N7 != unspecified ? N7 : 1);
165 template <
typename Layout,
typename iType>
166 KOKKOS_INLINE_FUNCTION
static std::enable_if_t<
167 (std::is_same<Layout, Kokkos::LayoutRight>::value ||
168 std::is_same<Layout, Kokkos::LayoutLeft>::value) &&
169 std::is_integral<iType>::value,
171 reconstructLayout(
const Layout& layout, iType dynrank) {
172 return Layout(dynrank > 0 ? layout.dimension[0] : KOKKOS_INVALID_INDEX,
173 dynrank > 1 ? layout.dimension[1] : KOKKOS_INVALID_INDEX,
174 dynrank > 2 ? layout.dimension[2] : KOKKOS_INVALID_INDEX,
175 dynrank > 3 ? layout.dimension[3] : KOKKOS_INVALID_INDEX,
176 dynrank > 4 ? layout.dimension[4] : KOKKOS_INVALID_INDEX,
177 dynrank > 5 ? layout.dimension[5] : KOKKOS_INVALID_INDEX,
178 dynrank > 6 ? layout.dimension[6] : KOKKOS_INVALID_INDEX,
179 dynrank > 7 ? layout.dimension[7] : KOKKOS_INVALID_INDEX);
183 template <
typename Layout,
typename iType>
184 KOKKOS_INLINE_FUNCTION
static std::enable_if_t<
185 (std::is_same<Layout, Kokkos::LayoutStride>::value) &&
186 std::is_integral<iType>::value,
188 reconstructLayout(
const Layout& layout, iType dynrank) {
189 return Layout(dynrank > 0 ? layout.dimension[0] : KOKKOS_INVALID_INDEX,
190 dynrank > 0 ? layout.stride[0] : (0),
191 dynrank > 1 ? layout.dimension[1] : KOKKOS_INVALID_INDEX,
192 dynrank > 1 ? layout.stride[1] : (0),
193 dynrank > 2 ? layout.dimension[2] : KOKKOS_INVALID_INDEX,
194 dynrank > 2 ? layout.stride[2] : (0),
195 dynrank > 3 ? layout.dimension[3] : KOKKOS_INVALID_INDEX,
196 dynrank > 3 ? layout.stride[3] : (0),
197 dynrank > 4 ? layout.dimension[4] : KOKKOS_INVALID_INDEX,
198 dynrank > 4 ? layout.stride[4] : (0),
199 dynrank > 5 ? layout.dimension[5] : KOKKOS_INVALID_INDEX,
200 dynrank > 5 ? layout.stride[5] : (0),
201 dynrank > 6 ? layout.dimension[6] : KOKKOS_INVALID_INDEX,
202 dynrank > 6 ? layout.stride[6] : (0),
203 dynrank > 7 ? layout.dimension[7] : KOKKOS_INVALID_INDEX,
204 dynrank > 7 ? layout.stride[7] : (0));
210 template <
unsigned,
typename iType0,
class MapType>
212 const iType0&,
const MapType&) {
216 template <
unsigned R,
typename iType0,
class MapType,
typename iType1,
219 const iType0& rank,
const MapType& map,
const iType1& i, Args... args) {
220 if (static_cast<iType0>(R) < rank) {
221 return (
size_t(i) < map.extent(R)) &&
222 dyn_rank_view_verify_operator_bounds<R + 1>(rank, map, args...);
225 "DynRankView Debug Bounds Checking Error: at rank %u\n Extra "
226 "arguments beyond the rank must be zero \n",
229 dyn_rank_view_verify_operator_bounds<R + 1>(rank, map, args...);
232 dyn_rank_view_verify_operator_bounds<R + 1>(rank, map, args...);
236 template <
unsigned,
class MapType>
237 inline void dyn_rank_view_error_operator_bounds(
char*,
int,
const MapType&) {}
239 template <
unsigned R,
class MapType,
class iType,
class... Args>
240 inline void dyn_rank_view_error_operator_bounds(
char* buf,
int len,
242 const iType& i, Args... args) {
243 const int n = snprintf(
244 buf, len,
" %ld < %ld %c", static_cast<unsigned long>(i),
245 static_cast<unsigned long>(map.extent(R)), (
sizeof...(Args) ?
',' :
')'));
246 dyn_rank_view_error_operator_bounds<R + 1>(buf + n, len - n, map, args...);
250 template <
typename MemorySpace,
typename iType0,
typename iType1,
class MapType,
253 const iType0& op_rank,
const iType1& rank,
254 const Kokkos::Impl::SharedAllocationTracker& tracker,
const MapType& map,
256 if (static_cast<iType0>(rank) > op_rank) {
258 "DynRankView Bounds Checking Error: Need at least rank arguments to "
262 if (!dyn_rank_view_verify_operator_bounds<0>(rank, map, args...)) {
264 (
enum {LEN = 1024};
char buffer[LEN];
265 const std::string label = tracker.template get_label<MemorySpace>();
266 int n = snprintf(buffer, LEN,
"DynRankView bounds error of view %s (",
268 dyn_rank_view_error_operator_bounds<0>(buffer + n, LEN - n, map,
270 Kokkos::Impl::throw_runtime_exception(std::string(buffer));))
273 ((
void)tracker; Kokkos::abort("DynRankView bounds error");))
284 template <
class DstTraits,
class SrcTraits>
286 DstTraits, SrcTraits,
287 std::enable_if_t<(std::is_same<typename DstTraits::memory_space,
288 typename SrcTraits::memory_space>::value &&
289 std::is_void<typename DstTraits::specialize>::value &&
290 std::is_void<typename SrcTraits::specialize>::value &&
291 (std::is_same<typename DstTraits::array_layout,
292 typename SrcTraits::array_layout>::value ||
293 ((std::is_same<typename DstTraits::array_layout,
294 Kokkos::LayoutLeft>::value ||
295 std::is_same<typename DstTraits::array_layout,
296 Kokkos::LayoutRight>::value ||
297 std::is_same<typename DstTraits::array_layout,
298 Kokkos::LayoutStride>::value) &&
299 (std::is_same<typename SrcTraits::array_layout,
300 Kokkos::LayoutLeft>::value ||
301 std::is_same<typename SrcTraits::array_layout,
302 Kokkos::LayoutRight>::value ||
303 std::is_same<typename SrcTraits::array_layout,
304 Kokkos::LayoutStride>::value)))),
305 Kokkos::Impl::ViewToDynRankViewTag>> {
308 is_assignable_value_type =
309 std::is_same<
typename DstTraits::value_type,
310 typename SrcTraits::value_type>::value ||
311 std::is_same<
typename DstTraits::value_type,
312 typename SrcTraits::const_value_type>::value
316 is_assignable_layout =
317 std::is_same<
typename DstTraits::array_layout,
318 typename SrcTraits::array_layout>::value ||
319 std::is_same<
typename DstTraits::array_layout,
324 enum { is_assignable = is_assignable_value_type && is_assignable_layout };
326 using DstType = ViewMapping<DstTraits, typename DstTraits::specialize>;
327 using SrcType = ViewMapping<SrcTraits, typename SrcTraits::specialize>;
329 template <
typename DT,
typename... DP,
typename ST,
typename... SP>
330 KOKKOS_INLINE_FUNCTION
static void assign(
333 is_assignable_value_type,
334 "View assignment must have same value type or const = non-const");
337 is_assignable_layout,
338 "View assignment must have compatible layout or have rank <= 1");
342 using dst_offset_type =
typename DstType::offset_type;
343 dst.m_map.m_impl_offset = dst_offset_type(
344 std::integral_constant<unsigned, 0>(),
346 dst.m_map.m_impl_handle = Kokkos::Impl::ViewDataHandle<DstTraits>::assign(
347 src.m_map.m_impl_handle, src.m_track.m_tracker);
348 dst.m_track.assign(src.m_track.m_tracker, DstTraits::is_managed);
372 struct is_dyn_rank_view :
public std::false_type {};
374 template <
class D,
class... P>
375 struct is_dyn_rank_view<Kokkos::DynRankView<D, P...>> :
public std::true_type {
379 inline constexpr
bool is_dyn_rank_view_v = is_dyn_rank_view<T>::value;
381 template <
typename DataType,
class... Properties>
382 class DynRankView :
public ViewTraits<DataType, Properties...> {
383 static_assert(!std::is_array<DataType>::value &&
384 !std::is_pointer<DataType>::value,
385 "Cannot template DynRankView with array or pointer datatype - "
389 template <
class,
class...>
390 friend class DynRankView;
391 template <
class,
class...>
392 friend class Kokkos::Impl::ViewMapping;
395 using drvtraits = ViewTraits<DataType, Properties...>;
397 using view_type =
View<DataType*******, Properties...>;
399 using traits = ViewTraits<DataType*******, Properties...>;
403 Kokkos::Impl::ViewMapping<traits, typename traits::specialize>;
404 using track_type = Kokkos::Impl::SharedAllocationTracker;
411 KOKKOS_INLINE_FUNCTION
412 view_type& DownCast()
const {
return (view_type&)(*this); }
413 KOKKOS_INLINE_FUNCTION
414 const view_type& ConstDownCast()
const {
return (
const view_type&)(*this); }
420 using array_type = DynRankView<
421 typename drvtraits::scalar_array_type,
typename drvtraits::array_layout,
422 typename drvtraits::device_type,
typename drvtraits::memory_traits>;
425 using const_type = DynRankView<
426 typename drvtraits::const_data_type,
typename drvtraits::array_layout,
427 typename drvtraits::device_type,
typename drvtraits::memory_traits>;
430 using non_const_type = DynRankView<
431 typename drvtraits::non_const_data_type,
typename drvtraits::array_layout,
432 typename drvtraits::device_type,
typename drvtraits::memory_traits>;
435 using HostMirror = DynRankView<
typename drvtraits::non_const_data_type,
436 typename drvtraits::array_layout,
437 typename drvtraits::host_mirror_space>;
445 template <
typename iType>
446 KOKKOS_INLINE_FUNCTION constexpr std::enable_if_t<
447 std::is_integral<iType>::value,
size_t>
448 extent(
const iType& r)
const {
449 return m_map.extent(r);
452 template <
typename iType>
453 KOKKOS_INLINE_FUNCTION constexpr std::enable_if_t<
454 std::is_integral<iType>::value,
int>
455 extent_int(
const iType& r)
const {
456 return static_cast<int>(m_map.extent(r));
459 KOKKOS_INLINE_FUNCTION constexpr
typename traits::array_layout layout()
const;
466 KOKKOS_INLINE_FUNCTION constexpr
size_t size()
const {
467 return m_map.extent(0) * m_map.extent(1) * m_map.extent(2) *
468 m_map.extent(3) * m_map.extent(4) * m_map.extent(5) *
469 m_map.extent(6) * m_map.extent(7);
472 KOKKOS_INLINE_FUNCTION constexpr
size_t stride_0()
const {
473 return m_map.stride_0();
475 KOKKOS_INLINE_FUNCTION constexpr
size_t stride_1()
const {
476 return m_map.stride_1();
478 KOKKOS_INLINE_FUNCTION constexpr
size_t stride_2()
const {
479 return m_map.stride_2();
481 KOKKOS_INLINE_FUNCTION constexpr
size_t stride_3()
const {
482 return m_map.stride_3();
484 KOKKOS_INLINE_FUNCTION constexpr
size_t stride_4()
const {
485 return m_map.stride_4();
487 KOKKOS_INLINE_FUNCTION constexpr
size_t stride_5()
const {
488 return m_map.stride_5();
490 KOKKOS_INLINE_FUNCTION constexpr
size_t stride_6()
const {
491 return m_map.stride_6();
493 KOKKOS_INLINE_FUNCTION constexpr
size_t stride_7()
const {
494 return m_map.stride_7();
497 template <
typename iType>
498 KOKKOS_INLINE_FUNCTION
void stride(iType*
const s)
const {
505 using reference_type =
typename map_type::reference_type;
506 using pointer_type =
typename map_type::pointer_type;
509 reference_type_is_lvalue_reference =
510 std::is_lvalue_reference<reference_type>::value
513 KOKKOS_INLINE_FUNCTION constexpr
size_t span()
const {
return m_map.span(); }
514 KOKKOS_INLINE_FUNCTION constexpr
bool span_is_contiguous()
const {
515 return m_map.span_is_contiguous();
517 KOKKOS_INLINE_FUNCTION constexpr pointer_type data()
const {
520 KOKKOS_INLINE_FUNCTION constexpr
bool is_allocated()
const {
521 return (m_map.data() !=
nullptr);
526 KOKKOS_INLINE_FUNCTION
527 const Kokkos::Impl::ViewMapping<traits, typename traits::specialize>&
537 std::is_same<typename traits::array_layout, Kokkos::LayoutLeft>::value,
540 std::is_same<typename traits::array_layout, Kokkos::LayoutRight>::value,
542 is_layout_stride = std::is_same<
typename traits::array_layout,
545 is_default_map = std::is_void<typename traits::specialize>::value &&
546 (is_layout_left || is_layout_right || is_layout_stride)
550 #if defined(KOKKOS_ENABLE_DEBUG_BOUNDS_CHECK)
553 #define KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(ARG) \
554 Kokkos::Impl::runtime_check_memory_access_violation< \
555 typename traits::memory_space>( \
556 "Kokkos::DynRankView ERROR: attempt to access inaccessible memory " \
558 Kokkos::Impl::dyn_rank_view_verify_operator_bounds< \
559 typename traits::memory_space> \
564 #define KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(ARG) \
565 Kokkos::Impl::runtime_check_memory_access_violation< \
566 typename traits::memory_space>( \
567 "Kokkos::DynRankView ERROR: attempt to access inaccessible memory " \
573 KOKKOS_INLINE_FUNCTION
574 constexpr
unsigned rank()
const {
return m_rank; }
578 KOKKOS_INLINE_FUNCTION
579 reference_type operator()()
const {
580 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY((0, this->rank(), m_track, m_map))
581 return impl_map().reference();
588 template <typename iType>
589 KOKKOS_INLINE_FUNCTION std::enable_if_t<
590 std::is_same<typename drvtraits::value_type,
591 typename drvtraits::scalar_array_type>::value &&
592 std::is_integral<iType>::value,
594 operator[](const iType& i0)
const {
603 template <
typename iType>
604 KOKKOS_INLINE_FUNCTION std::enable_if_t<
605 !std::is_same<
typename drvtraits::value_type,
606 typename drvtraits::scalar_array_type>::value &&
607 std::is_integral<iType>::value,
609 operator[](
const iType& i0)
const {
611 const size_t dim_scalar = m_map.dimension_scalar();
612 const size_t bytes = this->span() / dim_scalar;
615 DataType*,
typename traits::array_layout,
typename traits::device_type,
616 Kokkos::MemoryTraits<traits::memory_traits::is_unmanaged |
617 traits::memory_traits::is_random_access |
618 traits::memory_traits::is_atomic>>;
619 tmp_view_type rankone_view(this->data(), bytes, dim_scalar);
620 return rankone_view(i0);
624 template <
typename iType>
625 KOKKOS_INLINE_FUNCTION
626 std::enable_if_t<(std::is_void<typename traits::specialize>::value &&
627 std::is_integral<iType>::value),
629 operator()(
const iType& i0)
const {
630 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY((1, this->rank(), m_track, m_map, i0))
631 return m_map.reference(i0);
634 template <typename iType>
635 KOKKOS_INLINE_FUNCTION
636 std::enable_if_t<!(std::is_void<typename traits::specialize>::value &&
637 std::is_integral<iType>::value),
639 operator()(const iType& i0)
const {
640 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY((1, this->rank(), m_track, m_map, i0))
641 return m_map.reference(i0, 0, 0, 0, 0, 0, 0);
645 template <typename iType0, typename iType1>
646 KOKKOS_INLINE_FUNCTION std::enable_if_t<
647 (std::is_void<typename traits::specialize>::value &&
648 std::is_integral<iType0>::value && std::is_integral<iType1>::value),
650 operator()(const iType0& i0, const iType1& i1)
const {
651 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY((2, this->rank(), m_track, m_map, i0, i1))
652 return m_map.reference(i0, i1);
655 template <typename iType0, typename iType1>
656 KOKKOS_INLINE_FUNCTION
657 std::enable_if_t<!(std::is_void<typename drvtraits::specialize>::value &&
658 std::is_integral<iType0>::value),
660 operator()(const iType0& i0, const iType1& i1)
const {
661 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY((2, this->rank(), m_track, m_map, i0, i1))
662 return m_map.reference(i0, i1, 0, 0, 0, 0, 0);
666 template <typename iType0, typename iType1, typename iType2>
667 KOKKOS_INLINE_FUNCTION std::enable_if_t<
668 (std::is_void<typename traits::specialize>::value &&
669 std::is_integral<iType0>::value && std::is_integral<iType1>::value &&
670 std::is_integral<iType2>::value),
672 operator()(const iType0& i0, const iType1& i1, const iType2& i2)
const {
673 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
674 (3, this->rank(), m_track, m_map, i0, i1, i2))
675 return m_map.reference(i0, i1, i2);
678 template <typename iType0, typename iType1, typename iType2>
679 KOKKOS_INLINE_FUNCTION
680 std::enable_if_t<!(std::is_void<typename drvtraits::specialize>::value &&
681 std::is_integral<iType0>::value),
683 operator()(const iType0& i0, const iType1& i1, const iType2& i2)
const {
684 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
685 (3, this->rank(), m_track, m_map, i0, i1, i2))
686 return m_map.reference(i0, i1, i2, 0, 0, 0, 0);
690 template <typename iType0, typename iType1, typename iType2, typename iType3>
691 KOKKOS_INLINE_FUNCTION std::enable_if_t<
692 (std::is_void<typename traits::specialize>::value &&
693 std::is_integral<iType0>::value && std::is_integral<iType1>::value &&
694 std::is_integral<iType2>::value && std::is_integral<iType3>::value),
696 operator()(const iType0& i0, const iType1& i1, const iType2& i2,
697 const iType3& i3)
const {
698 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
699 (4, this->rank(), m_track, m_map, i0, i1, i2, i3))
700 return m_map.reference(i0, i1, i2, i3);
703 template <typename iType0, typename iType1, typename iType2, typename iType3>
704 KOKKOS_INLINE_FUNCTION
705 std::enable_if_t<!(std::is_void<typename drvtraits::specialize>::value &&
706 std::is_integral<iType0>::value),
708 operator()(const iType0& i0, const iType1& i1, const iType2& i2,
709 const iType3& i3)
const {
710 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
711 (4, this->rank(), m_track, m_map, i0, i1, i2, i3))
712 return m_map.reference(i0, i1, i2, i3, 0, 0, 0);
716 template <typename iType0, typename iType1, typename iType2, typename iType3,
718 KOKKOS_INLINE_FUNCTION std::enable_if_t<
719 (std::is_void<typename traits::specialize>::value &&
720 std::is_integral<iType0>::value && std::is_integral<iType1>::value &&
721 std::is_integral<iType2>::value && std::is_integral<iType3>::value &&
722 std::is_integral<iType4>::value),
724 operator()(const iType0& i0, const iType1& i1, const iType2& i2,
725 const iType3& i3, const iType4& i4)
const {
726 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
727 (5, this->rank(), m_track, m_map, i0, i1, i2, i3, i4))
728 return m_map.reference(i0, i1, i2, i3, i4);
731 template <typename iType0, typename iType1, typename iType2, typename iType3,
733 KOKKOS_INLINE_FUNCTION
734 std::enable_if_t<!(std::is_void<typename drvtraits::specialize>::value &&
735 std::is_integral<iType0>::value),
737 operator()(const iType0& i0, const iType1& i1, const iType2& i2,
738 const iType3& i3, const iType4& i4)
const {
739 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
740 (5, this->rank(), m_track, m_map, i0, i1, i2, i3, i4))
741 return m_map.reference(i0, i1, i2, i3, i4, 0, 0);
745 template <typename iType0, typename iType1, typename iType2, typename iType3,
746 typename iType4, typename iType5>
747 KOKKOS_INLINE_FUNCTION std::enable_if_t<
748 (std::is_void<typename traits::specialize>::value &&
749 std::is_integral<iType0>::value && std::is_integral<iType1>::value &&
750 std::is_integral<iType2>::value && std::is_integral<iType3>::value &&
751 std::is_integral<iType4>::value && std::is_integral<iType5>::value),
753 operator()(const iType0& i0, const iType1& i1, const iType2& i2,
754 const iType3& i3, const iType4& i4, const iType5& i5)
const {
755 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
756 (6, this->rank(), m_track, m_map, i0, i1, i2, i3, i4, i5))
757 return m_map.reference(i0, i1, i2, i3, i4, i5);
760 template <typename iType0, typename iType1, typename iType2, typename iType3,
761 typename iType4, typename iType5>
762 KOKKOS_INLINE_FUNCTION
763 std::enable_if_t<!(std::is_void<typename drvtraits::specialize>::value &&
764 std::is_integral<iType0>::value),
766 operator()(const iType0& i0, const iType1& i1, const iType2& i2,
767 const iType3& i3, const iType4& i4, const iType5& i5)
const {
768 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
769 (6, this->rank(), m_track, m_map, i0, i1, i2, i3, i4, i5))
770 return m_map.reference(i0, i1, i2, i3, i4, i5, 0);
774 template <typename iType0, typename iType1, typename iType2, typename iType3,
775 typename iType4, typename iType5, typename iType6>
776 KOKKOS_INLINE_FUNCTION std::enable_if_t<
777 (std::is_integral<iType0>::value && std::is_integral<iType1>::value &&
778 std::is_integral<iType2>::value && std::is_integral<iType3>::value &&
779 std::is_integral<iType4>::value && std::is_integral<iType5>::value &&
780 std::is_integral<iType6>::value),
782 operator()(const iType0& i0, const iType1& i1, const iType2& i2,
783 const iType3& i3, const iType4& i4, const iType5& i5,
784 const iType6& i6)
const {
785 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
786 (7, this->rank(), m_track, m_map, i0, i1, i2, i3, i4, i5, i6))
787 return m_map.reference(i0, i1, i2, i3, i4, i5, i6);
791 KOKKOS_INLINE_FUNCTION
792 reference_type access()
const {
793 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY((0, this->rank(), m_track, m_map))
794 return impl_map().reference();
800 template <typename iType>
801 KOKKOS_INLINE_FUNCTION
802 std::enable_if_t<(std::is_void<typename traits::specialize>::value &&
803 std::is_integral<iType>::value),
805 access(const iType& i0)
const {
806 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY((1, this->rank(), m_track, m_map, i0))
807 return m_map.reference(i0);
810 template <typename iType>
811 KOKKOS_INLINE_FUNCTION
812 std::enable_if_t<!(std::is_void<typename traits::specialize>::value &&
813 std::is_integral<iType>::value),
815 access(const iType& i0)
const {
816 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY((1, this->rank(), m_track, m_map, i0))
817 return m_map.reference(i0, 0, 0, 0, 0, 0, 0);
821 template <typename iType0, typename iType1>
822 KOKKOS_INLINE_FUNCTION std::enable_if_t<
823 (std::is_void<typename traits::specialize>::value &&
824 std::is_integral<iType0>::value && std::is_integral<iType1>::value),
826 access(const iType0& i0, const iType1& i1)
const {
827 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY((2, this->rank(), m_track, m_map, i0, i1))
828 return m_map.reference(i0, i1);
831 template <typename iType0, typename iType1>
832 KOKKOS_INLINE_FUNCTION
833 std::enable_if_t<!(std::is_void<typename drvtraits::specialize>::value &&
834 std::is_integral<iType0>::value),
836 access(const iType0& i0, const iType1& i1)
const {
837 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY((2, this->rank(), m_track, m_map, i0, i1))
838 return m_map.reference(i0, i1, 0, 0, 0, 0, 0);
842 template <typename iType0, typename iType1, typename iType2>
843 KOKKOS_INLINE_FUNCTION std::enable_if_t<
844 (std::is_void<typename traits::specialize>::value &&
845 std::is_integral<iType0>::value && std::is_integral<iType1>::value &&
846 std::is_integral<iType2>::value),
848 access(const iType0& i0, const iType1& i1, const iType2& i2)
const {
849 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
850 (3, this->rank(), m_track, m_map, i0, i1, i2))
851 return m_map.reference(i0, i1, i2);
854 template <typename iType0, typename iType1, typename iType2>
855 KOKKOS_INLINE_FUNCTION
856 std::enable_if_t<!(std::is_void<typename drvtraits::specialize>::value &&
857 std::is_integral<iType0>::value),
859 access(const iType0& i0, const iType1& i1, const iType2& i2)
const {
860 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
861 (3, this->rank(), m_track, m_map, i0, i1, i2))
862 return m_map.reference(i0, i1, i2, 0, 0, 0, 0);
866 template <typename iType0, typename iType1, typename iType2, typename iType3>
867 KOKKOS_INLINE_FUNCTION std::enable_if_t<
868 (std::is_void<typename traits::specialize>::value &&
869 std::is_integral<iType0>::value && std::is_integral<iType1>::value &&
870 std::is_integral<iType2>::value && std::is_integral<iType3>::value),
872 access(const iType0& i0, const iType1& i1, const iType2& i2,
873 const iType3& i3)
const {
874 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
875 (4, this->rank(), m_track, m_map, i0, i1, i2, i3))
876 return m_map.reference(i0, i1, i2, i3);
879 template <typename iType0, typename iType1, typename iType2, typename iType3>
880 KOKKOS_INLINE_FUNCTION
881 std::enable_if_t<!(std::is_void<typename drvtraits::specialize>::value &&
882 std::is_integral<iType0>::value),
884 access(const iType0& i0, const iType1& i1, const iType2& i2,
885 const iType3& i3)
const {
886 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
887 (4, this->rank(), m_track, m_map, i0, i1, i2, i3))
888 return m_map.reference(i0, i1, i2, i3, 0, 0, 0);
892 template <typename iType0, typename iType1, typename iType2, typename iType3,
894 KOKKOS_INLINE_FUNCTION std::enable_if_t<
895 (std::is_void<typename traits::specialize>::value &&
896 std::is_integral<iType0>::value && std::is_integral<iType1>::value &&
897 std::is_integral<iType2>::value && std::is_integral<iType3>::value &&
898 std::is_integral<iType4>::value),
900 access(const iType0& i0, const iType1& i1, const iType2& i2, const iType3& i3,
901 const iType4& i4)
const {
902 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
903 (5, this->rank(), m_track, m_map, i0, i1, i2, i3, i4))
904 return m_map.reference(i0, i1, i2, i3, i4);
907 template <typename iType0, typename iType1, typename iType2, typename iType3,
909 KOKKOS_INLINE_FUNCTION
910 std::enable_if_t<!(std::is_void<typename drvtraits::specialize>::value &&
911 std::is_integral<iType0>::value),
913 access(const iType0& i0, const iType1& i1, const iType2& i2,
914 const iType3& i3, const iType4& i4)
const {
915 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
916 (5, this->rank(), m_track, m_map, i0, i1, i2, i3, i4))
917 return m_map.reference(i0, i1, i2, i3, i4, 0, 0);
921 template <typename iType0, typename iType1, typename iType2, typename iType3,
922 typename iType4, typename iType5>
923 KOKKOS_INLINE_FUNCTION std::enable_if_t<
924 (std::is_void<typename traits::specialize>::value &&
925 std::is_integral<iType0>::value && std::is_integral<iType1>::value &&
926 std::is_integral<iType2>::value && std::is_integral<iType3>::value &&
927 std::is_integral<iType4>::value && std::is_integral<iType5>::value),
929 access(const iType0& i0, const iType1& i1, const iType2& i2, const iType3& i3,
930 const iType4& i4, const iType5& i5)
const {
931 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
932 (6, this->rank(), m_track, m_map, i0, i1, i2, i3, i4, i5))
933 return m_map.reference(i0, i1, i2, i3, i4, i5);
936 template <typename iType0, typename iType1, typename iType2, typename iType3,
937 typename iType4, typename iType5>
938 KOKKOS_INLINE_FUNCTION
939 std::enable_if_t<!(std::is_void<typename drvtraits::specialize>::value &&
940 std::is_integral<iType0>::value),
942 access(const iType0& i0, const iType1& i1, const iType2& i2,
943 const iType3& i3, const iType4& i4, const iType5& i5)
const {
944 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
945 (6, this->rank(), m_track, m_map, i0, i1, i2, i3, i4, i5))
946 return m_map.reference(i0, i1, i2, i3, i4, i5, 0);
950 template <typename iType0, typename iType1, typename iType2, typename iType3,
951 typename iType4, typename iType5, typename iType6>
952 KOKKOS_INLINE_FUNCTION std::enable_if_t<
953 (std::is_integral<iType0>::value && std::is_integral<iType1>::value &&
954 std::is_integral<iType2>::value && std::is_integral<iType3>::value &&
955 std::is_integral<iType4>::value && std::is_integral<iType5>::value &&
956 std::is_integral<iType6>::value),
958 access(const iType0& i0, const iType1& i1, const iType2& i2, const iType3& i3,
959 const iType4& i4, const iType5& i5, const iType6& i6)
const {
960 KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(
961 (7, this->rank(), m_track, m_map, i0, i1, i2, i3, i4, i5, i6))
962 return m_map.reference(i0, i1, i2, i3, i4, i5, i6);
965 #undef KOKKOS_IMPL_VIEW_OPERATOR_VERIFY
970 KOKKOS_DEFAULTED_FUNCTION
971 ~DynRankView() =
default;
973 KOKKOS_INLINE_FUNCTION
974 DynRankView() : m_track(), m_map(), m_rank() {}
976 KOKKOS_INLINE_FUNCTION
977 DynRankView(
const DynRankView& rhs)
978 : m_track(rhs.m_track), m_map(rhs.m_map), m_rank(rhs.m_rank) {}
980 KOKKOS_INLINE_FUNCTION
981 DynRankView(DynRankView&& rhs)
982 : m_track(rhs.m_track), m_map(rhs.m_map), m_rank(rhs.m_rank) {}
984 KOKKOS_INLINE_FUNCTION
985 DynRankView& operator=(
const DynRankView& rhs) {
986 m_track = rhs.m_track;
992 KOKKOS_INLINE_FUNCTION
993 DynRankView& operator=(DynRankView&& rhs) {
994 m_track = rhs.m_track;
1003 template <
class RT,
class... RP>
1004 KOKKOS_INLINE_FUNCTION DynRankView(
const DynRankView<RT, RP...>& rhs)
1005 : m_track(rhs.m_track, traits::is_managed), m_map(), m_rank(rhs.m_rank) {
1006 using SrcTraits =
typename DynRankView<RT, RP...>::traits;
1007 using Mapping = Kokkos::Impl::ViewMapping<traits, SrcTraits,
1008 typename traits::specialize>;
1009 static_assert(Mapping::is_assignable,
1010 "Incompatible DynRankView copy construction");
1011 Mapping::assign(m_map, rhs.m_map, rhs.m_track);
1014 template <
class RT,
class... RP>
1015 KOKKOS_INLINE_FUNCTION DynRankView& operator=(
1016 const DynRankView<RT, RP...>& rhs) {
1017 using SrcTraits =
typename DynRankView<RT, RP...>::traits;
1018 using Mapping = Kokkos::Impl::ViewMapping<traits, SrcTraits,
1019 typename traits::specialize>;
1020 static_assert(Mapping::is_assignable,
1021 "Incompatible DynRankView copy construction");
1022 Mapping::assign(m_map, rhs.m_map, rhs.m_track);
1023 m_track.assign(rhs.m_track, traits::is_managed);
1024 m_rank = rhs.rank();
1029 template <
class RT,
class... RP>
1030 KOKKOS_INLINE_FUNCTION DynRankView(
const View<RT, RP...>& rhs)
1031 : m_track(), m_map(), m_rank(
View<RT, RP...>::rank()) {
1032 using SrcTraits =
typename View<RT, RP...>::traits;
1034 Kokkos::Impl::ViewMapping<traits, SrcTraits,
1036 static_assert(Mapping::is_assignable,
1037 "Incompatible View to DynRankView copy construction");
1038 Mapping::assign(*
this, rhs);
1041 template <
class RT,
class... RP>
1042 KOKKOS_INLINE_FUNCTION DynRankView& operator=(
const View<RT, RP...>& rhs) {
1043 using SrcTraits =
typename View<RT, RP...>::traits;
1045 Kokkos::Impl::ViewMapping<traits, SrcTraits,
1047 static_assert(Mapping::is_assignable,
1048 "Incompatible View to DynRankView copy assignment");
1049 Mapping::assign(*
this, rhs);
1056 KOKKOS_INLINE_FUNCTION
1057 int use_count()
const {
return m_track.use_count(); }
1059 inline const std::string label()
const {
1060 return m_track.template get_label<typename traits::memory_space>();
1067 template <
class... P>
1068 explicit inline DynRankView(
1069 const Kokkos::Impl::ViewCtorProp<P...>& arg_prop,
1070 std::enable_if_t<!Kokkos::Impl::ViewCtorProp<P...>::has_pointer,
1071 typename traits::array_layout>
const& arg_layout)
1074 m_rank(Impl::DynRankDimTraits<typename traits::specialize>::
1075 template computeRank<typename traits::array_layout, P...>(
1076 arg_prop, arg_layout)) {
1078 auto prop_copy = Impl::with_properties_if_unset(
1079 arg_prop, std::string{},
typename traits::device_type::memory_space{},
1080 typename traits::device_type::execution_space{});
1081 using alloc_prop = decltype(prop_copy);
1083 static_assert(traits::is_managed,
1084 "View allocation constructor requires managed memory");
1086 if (alloc_prop::initialize &&
1087 !alloc_prop::execution_space::impl_is_initialized()) {
1090 Kokkos::Impl::throw_runtime_exception(
1091 "Constructing DynRankView and initializing data with uninitialized "
1095 Kokkos::Impl::SharedAllocationRecord<>* record = m_map.allocate_shared(
1097 Impl::DynRankDimTraits<typename traits::specialize>::
1098 template createLayout<traits, P...>(arg_prop, arg_layout),
1099 Impl::ViewCtorProp<P...>::has_execution_space);
1102 m_track.assign_allocated_record_to_uninitialized(record);
1106 template <
class... P>
1107 explicit KOKKOS_INLINE_FUNCTION DynRankView(
1108 const Kokkos::Impl::ViewCtorProp<P...>& arg_prop,
1109 std::enable_if_t<Kokkos::Impl::ViewCtorProp<P...>::has_pointer,
1110 typename traits::array_layout>
const& arg_layout)
1114 Impl::DynRankDimTraits<typename traits::specialize>::
1115 template createLayout<traits, P...>(arg_prop, arg_layout)),
1116 m_rank(Impl::DynRankDimTraits<typename traits::specialize>::
1117 template computeRank<typename traits::array_layout, P...>(
1118 arg_prop, arg_layout)) {
1120 std::is_same<pointer_type,
1121 typename Impl::ViewCtorProp<P...>::pointer_type>::value,
1122 "Constructing DynRankView to wrap user memory must supply matching "
1130 template <
class... P>
1131 explicit inline DynRankView(
1132 const Kokkos::Impl::ViewCtorProp<P...>& arg_prop,
1133 std::enable_if_t<!Kokkos::Impl::ViewCtorProp<P...>::has_pointer,
1134 size_t>
const arg_N0 = KOKKOS_INVALID_INDEX,
1135 const size_t arg_N1 = KOKKOS_INVALID_INDEX,
1136 const size_t arg_N2 = KOKKOS_INVALID_INDEX,
1137 const size_t arg_N3 = KOKKOS_INVALID_INDEX,
1138 const size_t arg_N4 = KOKKOS_INVALID_INDEX,
1139 const size_t arg_N5 = KOKKOS_INVALID_INDEX,
1140 const size_t arg_N6 = KOKKOS_INVALID_INDEX,
1141 const size_t arg_N7 = KOKKOS_INVALID_INDEX)
1142 : DynRankView(arg_prop, typename traits::array_layout(
1143 arg_N0, arg_N1, arg_N2, arg_N3, arg_N4,
1144 arg_N5, arg_N6, arg_N7)) {}
1146 template <
class... P>
1147 explicit KOKKOS_INLINE_FUNCTION DynRankView(
1148 const Kokkos::Impl::ViewCtorProp<P...>& arg_prop,
1149 std::enable_if_t<Kokkos::Impl::ViewCtorProp<P...>::has_pointer,
1150 size_t>
const arg_N0 = KOKKOS_INVALID_INDEX,
1151 const size_t arg_N1 = KOKKOS_INVALID_INDEX,
1152 const size_t arg_N2 = KOKKOS_INVALID_INDEX,
1153 const size_t arg_N3 = KOKKOS_INVALID_INDEX,
1154 const size_t arg_N4 = KOKKOS_INVALID_INDEX,
1155 const size_t arg_N5 = KOKKOS_INVALID_INDEX,
1156 const size_t arg_N6 = KOKKOS_INVALID_INDEX,
1157 const size_t arg_N7 = KOKKOS_INVALID_INDEX)
1158 : DynRankView(arg_prop, typename traits::array_layout(
1159 arg_N0, arg_N1, arg_N2, arg_N3, arg_N4,
1160 arg_N5, arg_N6, arg_N7)) {}
1163 template <
typename Label>
1164 explicit inline DynRankView(
1165 const Label& arg_label,
1166 std::enable_if_t<Kokkos::Impl::is_view_label<Label>::value,
1167 typename traits::array_layout>
const& arg_layout)
1168 : DynRankView(Kokkos::Impl::ViewCtorProp<std::string>(arg_label),
1172 template <
typename Label>
1173 explicit inline DynRankView(
1174 const Label& arg_label,
1175 std::enable_if_t<Kokkos::Impl::is_view_label<Label>::value,
const size_t>
1176 arg_N0 = KOKKOS_INVALID_INDEX,
1177 const size_t arg_N1 = KOKKOS_INVALID_INDEX,
1178 const size_t arg_N2 = KOKKOS_INVALID_INDEX,
1179 const size_t arg_N3 = KOKKOS_INVALID_INDEX,
1180 const size_t arg_N4 = KOKKOS_INVALID_INDEX,
1181 const size_t arg_N5 = KOKKOS_INVALID_INDEX,
1182 const size_t arg_N6 = KOKKOS_INVALID_INDEX,
1183 const size_t arg_N7 = KOKKOS_INVALID_INDEX)
1185 Kokkos::Impl::ViewCtorProp<std::string>(arg_label),
1186 typename traits::array_layout(arg_N0, arg_N1, arg_N2, arg_N3,
1187 arg_N4, arg_N5, arg_N6, arg_N7)) {}
1191 static constexpr
size_t required_allocation_size(
1192 const size_t arg_N0 = 0,
const size_t arg_N1 = 0,
const size_t arg_N2 = 0,
1193 const size_t arg_N3 = 0,
const size_t arg_N4 = 0,
const size_t arg_N5 = 0,
1194 const size_t arg_N6 = 0,
const size_t arg_N7 = 0) {
1195 return map_type::memory_span(
typename traits::array_layout(
1196 arg_N0, arg_N1, arg_N2, arg_N3, arg_N4, arg_N5, arg_N6, arg_N7));
1199 explicit KOKKOS_INLINE_FUNCTION DynRankView(
1200 pointer_type arg_ptr,
const size_t arg_N0 = KOKKOS_INVALID_INDEX,
1201 const size_t arg_N1 = KOKKOS_INVALID_INDEX,
1202 const size_t arg_N2 = KOKKOS_INVALID_INDEX,
1203 const size_t arg_N3 = KOKKOS_INVALID_INDEX,
1204 const size_t arg_N4 = KOKKOS_INVALID_INDEX,
1205 const size_t arg_N5 = KOKKOS_INVALID_INDEX,
1206 const size_t arg_N6 = KOKKOS_INVALID_INDEX,
1207 const size_t arg_N7 = KOKKOS_INVALID_INDEX)
1208 : DynRankView(Kokkos::Impl::ViewCtorProp<pointer_type>(arg_ptr), arg_N0,
1209 arg_N1, arg_N2, arg_N3, arg_N4, arg_N5, arg_N6, arg_N7) {}
1211 explicit KOKKOS_INLINE_FUNCTION DynRankView(
1212 pointer_type arg_ptr,
typename traits::array_layout& arg_layout)
1213 : DynRankView(Kokkos::Impl::ViewCtorProp<pointer_type>(arg_ptr),
1219 static inline size_t shmem_size(
const size_t arg_N0 = KOKKOS_INVALID_INDEX,
1220 const size_t arg_N1 = KOKKOS_INVALID_INDEX,
1221 const size_t arg_N2 = KOKKOS_INVALID_INDEX,
1222 const size_t arg_N3 = KOKKOS_INVALID_INDEX,
1223 const size_t arg_N4 = KOKKOS_INVALID_INDEX,
1224 const size_t arg_N5 = KOKKOS_INVALID_INDEX,
1225 const size_t arg_N6 = KOKKOS_INVALID_INDEX,
1226 const size_t arg_N7 = KOKKOS_INVALID_INDEX) {
1227 const size_t num_passed_args =
1228 (arg_N0 != KOKKOS_INVALID_INDEX) + (arg_N1 != KOKKOS_INVALID_INDEX) +
1229 (arg_N2 != KOKKOS_INVALID_INDEX) + (arg_N3 != KOKKOS_INVALID_INDEX) +
1230 (arg_N4 != KOKKOS_INVALID_INDEX) + (arg_N5 != KOKKOS_INVALID_INDEX) +
1231 (arg_N6 != KOKKOS_INVALID_INDEX) + (arg_N7 != KOKKOS_INVALID_INDEX);
1233 if (std::is_void<typename traits::specialize>::value &&
1234 num_passed_args != traits::rank_dynamic) {
1236 "Kokkos::View::shmem_size() rank_dynamic != number of arguments.\n");
1240 return map_type::memory_span(
typename traits::array_layout(
1241 arg_N0, arg_N1, arg_N2, arg_N3, arg_N4, arg_N5, arg_N6, arg_N7));
1244 explicit KOKKOS_INLINE_FUNCTION DynRankView(
1245 const typename traits::execution_space::scratch_memory_space& arg_space,
1246 const typename traits::array_layout& arg_layout)
1248 Kokkos::Impl::ViewCtorProp<pointer_type>(
1249 reinterpret_cast<pointer_type>(
1250 arg_space.get_shmem(map_type::memory_span(
1251 Impl::DynRankDimTraits<typename traits::specialize>::
1252 createLayout(arg_layout)
1256 explicit KOKKOS_INLINE_FUNCTION DynRankView(
1257 const typename traits::execution_space::scratch_memory_space& arg_space,
1258 const size_t arg_N0 = KOKKOS_INVALID_INDEX,
1259 const size_t arg_N1 = KOKKOS_INVALID_INDEX,
1260 const size_t arg_N2 = KOKKOS_INVALID_INDEX,
1261 const size_t arg_N3 = KOKKOS_INVALID_INDEX,
1262 const size_t arg_N4 = KOKKOS_INVALID_INDEX,
1263 const size_t arg_N5 = KOKKOS_INVALID_INDEX,
1264 const size_t arg_N6 = KOKKOS_INVALID_INDEX,
1265 const size_t arg_N7 = KOKKOS_INVALID_INDEX)
1268 Kokkos::Impl::ViewCtorProp<pointer_type>(
1269 reinterpret_cast<pointer_type>(
1270 arg_space.get_shmem(map_type::memory_span(
1271 Impl::DynRankDimTraits<typename traits::specialize>::
1272 createLayout(typename traits::array_layout(
1273 arg_N0, arg_N1, arg_N2, arg_N3, arg_N4, arg_N5,
1274 arg_N6, arg_N7)))))),
1275 typename traits::array_layout(arg_N0, arg_N1, arg_N2, arg_N3,
1276 arg_N4, arg_N5, arg_N6, arg_N7)) {}
1279 template <
typename D,
class... P>
1280 KOKKOS_INLINE_FUNCTION constexpr
unsigned rank(
1281 const DynRankView<D, P...>& DRV) {
1292 struct DynRankSubviewTag {};
1298 template <
class SrcTraits,
class... Args>
1300 std::enable_if_t<(std::is_void<typename SrcTraits::specialize>::value &&
1301 (std::is_same<typename SrcTraits::array_layout,
1302 Kokkos::LayoutLeft>::value ||
1303 std::is_same<typename SrcTraits::array_layout,
1304 Kokkos::LayoutRight>::value ||
1305 std::is_same<typename SrcTraits::array_layout,
1306 Kokkos::LayoutStride>::value)),
1307 Kokkos::Impl::DynRankSubviewTag>,
1308 SrcTraits, Args...> {
1312 R0 = bool(is_integral_extent<0, Args...>::value),
1313 R1 = bool(is_integral_extent<1, Args...>::value),
1314 R2 = bool(is_integral_extent<2, Args...>::value),
1315 R3 = bool(is_integral_extent<3, Args...>::value),
1316 R4 = bool(is_integral_extent<4, Args...>::value),
1317 R5 = bool(is_integral_extent<5, Args...>::value),
1318 R6 = bool(is_integral_extent<6, Args...>::value)
1322 rank = unsigned(R0) + unsigned(R1) + unsigned(R2) + unsigned(R3) +
1323 unsigned(R4) + unsigned(R5) + unsigned(R6)
1328 using value_type =
typename SrcTraits::value_type;
1330 using data_type = value_type*******;
1334 typename SrcTraits::device_type,
1335 typename SrcTraits::memory_traits>;
1338 Kokkos::View<data_type, array_layout,
typename SrcTraits::device_type,
1339 typename SrcTraits::memory_traits>;
1341 template <
class MemoryTraits>
1343 static_assert(Kokkos::is_memory_traits<MemoryTraits>::value);
1347 typename SrcTraits::device_type, MemoryTraits>;
1350 typename SrcTraits::device_type, MemoryTraits>;
1353 using dimension =
typename SrcTraits::dimension;
1355 template <
class Arg0 = int,
class Arg1 = int,
class Arg2 = int,
1356 class Arg3 = int,
class Arg4 = int,
class Arg5 = int,
1358 struct ExtentGenerator {
1359 KOKKOS_INLINE_FUNCTION
1360 static SubviewExtents<7, rank> generator(
1361 const dimension& dim, Arg0 arg0 = Arg0(), Arg1 arg1 = Arg1(),
1362 Arg2 arg2 = Arg2(), Arg3 arg3 = Arg3(), Arg4 arg4 = Arg4(),
1363 Arg5 arg5 = Arg5(), Arg6 arg6 = Arg6()) {
1364 return SubviewExtents<7, rank>(dim, arg0, arg1, arg2, arg3, arg4, arg5,
1369 using ret_type = Kokkos::DynRankView<value_type, array_layout,
1370 typename SrcTraits::device_type,
1371 typename SrcTraits::memory_traits>;
1373 template <
typename T,
class... P>
1374 KOKKOS_INLINE_FUNCTION
static ret_type subview(
1375 const unsigned src_rank, Kokkos::DynRankView<T, P...>
const& src,
1377 using DstType = ViewMapping<traits_type, typename traits_type::specialize>;
1379 using DstDimType = std::conditional_t<
1380 (rank == 0), ViewDimension<>,
1382 (rank == 1), ViewDimension<0>,
1384 (rank == 2), ViewDimension<0, 0>,
1386 (rank == 3), ViewDimension<0, 0, 0>,
1388 (rank == 4), ViewDimension<0, 0, 0, 0>,
1390 (rank == 5), ViewDimension<0, 0, 0, 0, 0>,
1392 (rank == 6), ViewDimension<0, 0, 0, 0, 0, 0>,
1393 ViewDimension<0, 0, 0, 0, 0, 0, 0>>>>>>>>;
1395 using dst_offset_type = ViewOffset<DstDimType, Kokkos::LayoutStride>;
1396 using dst_handle_type =
typename DstType::handle_type;
1400 const SubviewExtents<7, rank> extents = ExtentGenerator<Args...>::generator(
1401 src.m_map.m_impl_offset.m_dim, args...);
1403 dst_offset_type tempdst(src.m_map.m_impl_offset, extents);
1405 dst.m_track = src.m_track;
1407 dst.m_map.m_impl_offset.m_dim.N0 = tempdst.m_dim.N0;
1408 dst.m_map.m_impl_offset.m_dim.N1 = tempdst.m_dim.N1;
1409 dst.m_map.m_impl_offset.m_dim.N2 = tempdst.m_dim.N2;
1410 dst.m_map.m_impl_offset.m_dim.N3 = tempdst.m_dim.N3;
1411 dst.m_map.m_impl_offset.m_dim.N4 = tempdst.m_dim.N4;
1412 dst.m_map.m_impl_offset.m_dim.N5 = tempdst.m_dim.N5;
1413 dst.m_map.m_impl_offset.m_dim.N6 = tempdst.m_dim.N6;
1415 dst.m_map.m_impl_offset.m_stride.S0 = tempdst.m_stride.S0;
1416 dst.m_map.m_impl_offset.m_stride.S1 = tempdst.m_stride.S1;
1417 dst.m_map.m_impl_offset.m_stride.S2 = tempdst.m_stride.S2;
1418 dst.m_map.m_impl_offset.m_stride.S3 = tempdst.m_stride.S3;
1419 dst.m_map.m_impl_offset.m_stride.S4 = tempdst.m_stride.S4;
1420 dst.m_map.m_impl_offset.m_stride.S5 = tempdst.m_stride.S5;
1421 dst.m_map.m_impl_offset.m_stride.S6 = tempdst.m_stride.S6;
1423 dst.m_map.m_impl_handle =
1424 dst_handle_type(src.m_map.m_impl_handle +
1425 src.m_map.m_impl_offset(
1426 extents.domain_offset(0), extents.domain_offset(1),
1427 extents.domain_offset(2), extents.domain_offset(3),
1428 extents.domain_offset(4), extents.domain_offset(5),
1429 extents.domain_offset(6)));
1432 (src_rank > 0 ? unsigned(R0) : 0) + (src_rank > 1 ? unsigned(R1) : 0) +
1433 (src_rank > 2 ? unsigned(R2) : 0) + (src_rank > 3 ? unsigned(R3) : 0) +
1434 (src_rank > 4 ? unsigned(R4) : 0) + (src_rank > 5 ? unsigned(R5) : 0) +
1435 (src_rank > 6 ? unsigned(R6) : 0);
1443 template <
class V,
class... Args>
1444 using Subdynrankview =
1445 typename Kokkos::Impl::ViewMapping<Kokkos::Impl::DynRankSubviewTag, V,
1448 template <
class D,
class... P,
class... Args>
1449 KOKKOS_INLINE_FUNCTION Subdynrankview<ViewTraits<D*******, P...>, Args...>
1450 subdynrankview(
const Kokkos::DynRankView<D, P...>& src, Args... args) {
1451 if (src.rank() >
sizeof...(Args))
1455 "subdynrankview: num of args must be >= rank of the source "
1460 Kokkos::Impl::ViewMapping<Kokkos::Impl::DynRankSubviewTag,
1463 return metafcn::subview(src.rank(), src, args...);
1467 template <
class D,
class... P,
class... Args>
1468 KOKKOS_INLINE_FUNCTION Subdynrankview<ViewTraits<D*******, P...>, Args...>
1469 subview(
const Kokkos::DynRankView<D, P...>& src, Args... args) {
1470 return subdynrankview(src, args...);
1478 template <
class LT,
class... LP,
class RT,
class... RP>
1479 KOKKOS_INLINE_FUNCTION
bool operator==(
const DynRankView<LT, LP...>& lhs,
1480 const DynRankView<RT, RP...>& rhs) {
1482 using lhs_traits = ViewTraits<LT, LP...>;
1483 using rhs_traits = ViewTraits<RT, RP...>;
1485 return std::is_same<
typename lhs_traits::const_value_type,
1486 typename rhs_traits::const_value_type>::value &&
1487 std::is_same<
typename lhs_traits::array_layout,
1488 typename rhs_traits::array_layout>::value &&
1489 std::is_same<
typename lhs_traits::memory_space,
1490 typename rhs_traits::memory_space>::value &&
1491 lhs.rank() == rhs.rank() && lhs.data() == rhs.data() &&
1492 lhs.span() == rhs.span() && lhs.extent(0) == rhs.extent(0) &&
1493 lhs.extent(1) == rhs.extent(1) && lhs.extent(2) == rhs.extent(2) &&
1494 lhs.extent(3) == rhs.extent(3) && lhs.extent(4) == rhs.extent(4) &&
1495 lhs.extent(5) == rhs.extent(5) && lhs.extent(6) == rhs.extent(6) &&
1496 lhs.extent(7) == rhs.extent(7);
1499 template <
class LT,
class... LP,
class RT,
class... RP>
1500 KOKKOS_INLINE_FUNCTION
bool operator!=(
const DynRankView<LT, LP...>& lhs,
1501 const DynRankView<RT, RP...>& rhs) {
1502 return !(operator==(lhs, rhs));
1512 template <
class OutputView,
class Enable =
void>
1513 struct DynRankViewFill {
1514 using const_value_type =
typename OutputView::traits::const_value_type;
1516 const OutputView output;
1517 const_value_type input;
1519 KOKKOS_INLINE_FUNCTION
1520 void operator()(
const size_t i0)
const {
1521 const size_t n1 = output.extent(1);
1522 const size_t n2 = output.extent(2);
1523 const size_t n3 = output.extent(3);
1524 const size_t n4 = output.extent(4);
1525 const size_t n5 = output.extent(5);
1526 const size_t n6 = output.extent(6);
1528 for (
size_t i1 = 0; i1 < n1; ++i1) {
1529 for (
size_t i2 = 0; i2 < n2; ++i2) {
1530 for (
size_t i3 = 0; i3 < n3; ++i3) {
1531 for (
size_t i4 = 0; i4 < n4; ++i4) {
1532 for (
size_t i5 = 0; i5 < n5; ++i5) {
1533 for (
size_t i6 = 0; i6 < n6; ++i6) {
1534 output.access(i0, i1, i2, i3, i4, i5, i6) = input;
1543 DynRankViewFill(
const OutputView& arg_out, const_value_type& arg_in)
1544 : output(arg_out), input(arg_in) {
1545 using execution_space =
typename OutputView::execution_space;
1548 Kokkos::parallel_for(
"Kokkos::DynRankViewFill", Policy(0, output.extent(0)),
1553 template <
class OutputView>
1554 struct DynRankViewFill<OutputView, std::enable_if_t<OutputView::rank == 0>> {
1555 DynRankViewFill(
const OutputView& dst,
1556 const typename OutputView::const_value_type& src) {
1557 Kokkos::Impl::DeepCopy<
typename OutputView::memory_space,
1559 dst.data(), &src,
sizeof(
typename OutputView::const_value_type));
1563 template <
class OutputView,
class InputView,
1564 class ExecSpace =
typename OutputView::execution_space>
1565 struct DynRankViewRemap {
1566 const OutputView output;
1567 const InputView input;
1577 DynRankViewRemap(
const ExecSpace& exec_space,
const OutputView& arg_out,
1578 const InputView& arg_in)
1581 n0(std::min((size_t)arg_out.extent(0), (size_t)arg_in.extent(0))),
1582 n1(std::min((size_t)arg_out.extent(1), (size_t)arg_in.extent(1))),
1583 n2(std::min((size_t)arg_out.extent(2), (size_t)arg_in.extent(2))),
1584 n3(std::min((size_t)arg_out.extent(3), (size_t)arg_in.extent(3))),
1585 n4(std::min((size_t)arg_out.extent(4), (size_t)arg_in.extent(4))),
1586 n5(std::min((size_t)arg_out.extent(5), (size_t)arg_in.extent(5))),
1587 n6(std::min((size_t)arg_out.extent(6), (size_t)arg_in.extent(6))),
1588 n7(std::min((size_t)arg_out.extent(7), (size_t)arg_in.extent(7))) {
1591 Kokkos::parallel_for(
"Kokkos::DynRankViewRemap", Policy(exec_space, 0, n0),
1595 DynRankViewRemap(
const OutputView& arg_out,
const InputView& arg_in)
1598 n0(std::min((size_t)arg_out.extent(0), (size_t)arg_in.extent(0))),
1599 n1(std::min((size_t)arg_out.extent(1), (size_t)arg_in.extent(1))),
1600 n2(std::min((size_t)arg_out.extent(2), (size_t)arg_in.extent(2))),
1601 n3(std::min((size_t)arg_out.extent(3), (size_t)arg_in.extent(3))),
1602 n4(std::min((size_t)arg_out.extent(4), (size_t)arg_in.extent(4))),
1603 n5(std::min((size_t)arg_out.extent(5), (size_t)arg_in.extent(5))),
1604 n6(std::min((size_t)arg_out.extent(6), (size_t)arg_in.extent(6))),
1605 n7(std::min((size_t)arg_out.extent(7), (size_t)arg_in.extent(7))) {
1608 Kokkos::parallel_for(
"Kokkos::DynRankViewRemap", Policy(0, n0), *
this);
1611 KOKKOS_INLINE_FUNCTION
1612 void operator()(
const size_t i0)
const {
1613 for (
size_t i1 = 0; i1 < n1; ++i1) {
1614 for (
size_t i2 = 0; i2 < n2; ++i2) {
1615 for (
size_t i3 = 0; i3 < n3; ++i3) {
1616 for (
size_t i4 = 0; i4 < n4; ++i4) {
1617 for (
size_t i5 = 0; i5 < n5; ++i5) {
1618 for (
size_t i6 = 0; i6 < n6; ++i6) {
1619 output.access(i0, i1, i2, i3, i4, i5, i6) =
1620 input.access(i0, i1, i2, i3, i4, i5, i6);
1640 template <
unsigned N,
typename T,
typename... Args>
1641 KOKKOS_FUNCTION
auto as_view_of_rank_n(
1642 DynRankView<T, Args...> v,
1643 typename std::enable_if<std::is_same<
1644 typename ViewTraits<T, Args...>::specialize,
void>::value>::type* =
1646 if (v.rank() != N) {
1648 const std::string message =
1649 "Converting DynRankView of rank " + std::to_string(v.rank()) +
1650 " to a View of mis-matched rank " + std::to_string(N) +
"!";
1651 Kokkos::abort(message.c_str());)
1652 KOKKOS_IF_ON_DEVICE(
1653 Kokkos::abort(
"Converting DynRankView to a View of mis-matched rank!");)
1656 auto layout = v.impl_map().layout();
1661 for (
int i = N; i < 7; ++i)
1662 layout.dimension[i] = KOKKOS_IMPL_CTOR_DEFAULT_ARG;
1665 return View<typename RankDataType<T, N>::type, Args...>(v.data(), layout);
1668 template <
typename Function,
typename... Args>
1669 void apply_to_view_of_static_rank(Function&& f, DynRankView<Args...> a) {
1671 case 0: f(as_view_of_rank_n<0>(a));
break;
1672 case 1: f(as_view_of_rank_n<1>(a));
break;
1673 case 2: f(as_view_of_rank_n<2>(a));
break;
1674 case 3: f(as_view_of_rank_n<3>(a));
break;
1675 case 4: f(as_view_of_rank_n<4>(a));
break;
1676 case 5: f(as_view_of_rank_n<5>(a));
break;
1677 case 6: f(as_view_of_rank_n<6>(a));
break;
1678 case 7: f(as_view_of_rank_n<7>(a));
break;
1683 "Trying to apply a function to a view of unexpected rank " +
1684 std::to_string(rank(a)))
1686 KOKKOS_IF_ON_DEVICE(
1688 "Trying to apply a function to a view of unexpected rank");)
1694 template <typename D, class... P>
1695 KOKKOS_INLINE_FUNCTION constexpr
auto DynRankView<D, P...>::layout() const ->
1696 typename traits::array_layout {
1698 case 0:
return Impl::as_view_of_rank_n<0>(*this).layout();
1699 case 1:
return Impl::as_view_of_rank_n<1>(*this).layout();
1700 case 2:
return Impl::as_view_of_rank_n<2>(*this).layout();
1701 case 3:
return Impl::as_view_of_rank_n<3>(*this).layout();
1702 case 4:
return Impl::as_view_of_rank_n<4>(*this).layout();
1703 case 5:
return Impl::as_view_of_rank_n<5>(*this).layout();
1704 case 6:
return Impl::as_view_of_rank_n<6>(*this).layout();
1705 case 7:
return Impl::as_view_of_rank_n<7>(*this).layout();
1710 "Calling DynRankView::layout on DRV of unexpected rank " +
1711 std::to_string(rank()))
1713 KOKKOS_IF_ON_DEVICE(
1715 "Calling DynRankView::layout on DRV of unexpected rank");)
1718 return m_map.layout();
1722 template <
class ExecSpace,
class DT,
class... DP>
1723 inline void deep_copy(
1724 const ExecSpace& e,
const DynRankView<DT, DP...>& dst,
1725 typename ViewTraits<DT, DP...>::const_value_type& value,
1726 std::enable_if_t<std::is_same<
typename ViewTraits<DT, DP...>::specialize,
1727 void>::value>* =
nullptr) {
1729 std::is_same<
typename ViewTraits<DT, DP...>::non_const_value_type,
1730 typename ViewTraits<DT, DP...>::value_type>::value,
1731 "deep_copy requires non-const type");
1733 Impl::apply_to_view_of_static_rank(
1734 [=](
auto view) { deep_copy(e, view, value); }, dst);
1737 template <
class DT,
class... DP>
1738 inline void deep_copy(
1739 const DynRankView<DT, DP...>& dst,
1740 typename ViewTraits<DT, DP...>::const_value_type& value,
1741 std::enable_if_t<std::is_same<
typename ViewTraits<DT, DP...>::specialize,
1742 void>::value>* =
nullptr) {
1743 Impl::apply_to_view_of_static_rank([=](
auto view) { deep_copy(view, value); },
1748 template <
class ExecSpace,
class ST,
class... SP>
1749 inline void deep_copy(
1751 typename ViewTraits<ST, SP...>::non_const_value_type& dst,
1752 const DynRankView<ST, SP...>& src,
1753 std::enable_if_t<std::is_same<
typename ViewTraits<ST, SP...>::specialize,
1754 void>::value>* = 0) {
1755 deep_copy(e, dst, Impl::as_view_of_rank_n<0>(src));
1758 template <
class ST,
class... SP>
1759 inline void deep_copy(
1760 typename ViewTraits<ST, SP...>::non_const_value_type& dst,
1761 const DynRankView<ST, SP...>& src,
1762 std::enable_if_t<std::is_same<
typename ViewTraits<ST, SP...>::specialize,
1763 void>::value>* = 0) {
1764 deep_copy(dst, Impl::as_view_of_rank_n<0>(src));
1773 template <
class ExecSpace,
class DstType,
class SrcType>
1774 inline void deep_copy(
1775 const ExecSpace& exec_space,
const DstType& dst,
const SrcType& src,
1777 (std::is_void<typename DstType::traits::specialize>::value &&
1778 std::is_void<typename SrcType::traits::specialize>::value &&
1779 (Kokkos::is_dyn_rank_view<DstType>::value ||
1780 Kokkos::is_dyn_rank_view<SrcType>::value))>* =
nullptr) {
1782 std::is_same<
typename DstType::traits::value_type,
1783 typename DstType::traits::non_const_value_type>::value,
1784 "deep_copy requires non-const destination type");
1786 switch (rank(dst)) {
1788 deep_copy(exec_space, Impl::as_view_of_rank_n<0>(dst),
1789 Impl::as_view_of_rank_n<0>(src));
1792 deep_copy(exec_space, Impl::as_view_of_rank_n<1>(dst),
1793 Impl::as_view_of_rank_n<1>(src));
1796 deep_copy(exec_space, Impl::as_view_of_rank_n<2>(dst),
1797 Impl::as_view_of_rank_n<2>(src));
1800 deep_copy(exec_space, Impl::as_view_of_rank_n<3>(dst),
1801 Impl::as_view_of_rank_n<3>(src));
1804 deep_copy(exec_space, Impl::as_view_of_rank_n<4>(dst),
1805 Impl::as_view_of_rank_n<4>(src));
1808 deep_copy(exec_space, Impl::as_view_of_rank_n<5>(dst),
1809 Impl::as_view_of_rank_n<5>(src));
1812 deep_copy(exec_space, Impl::as_view_of_rank_n<6>(dst),
1813 Impl::as_view_of_rank_n<6>(src));
1816 deep_copy(exec_space, Impl::as_view_of_rank_n<7>(dst),
1817 Impl::as_view_of_rank_n<7>(src));
1820 Kokkos::Impl::throw_runtime_exception(
1821 "Calling DynRankView deep_copy with a view of unexpected rank " +
1822 std::to_string(rank(dst)));
1826 template <
class DstType,
class SrcType>
1827 inline void deep_copy(
1828 const DstType& dst,
const SrcType& src,
1830 (std::is_void<typename DstType::traits::specialize>::value &&
1831 std::is_void<typename SrcType::traits::specialize>::value &&
1832 (Kokkos::is_dyn_rank_view<DstType>::value ||
1833 Kokkos::is_dyn_rank_view<SrcType>::value))>* =
nullptr) {
1835 std::is_same<
typename DstType::traits::value_type,
1836 typename DstType::traits::non_const_value_type>::value,
1837 "deep_copy requires non-const destination type");
1839 switch (rank(dst)) {
1841 deep_copy(Impl::as_view_of_rank_n<0>(dst),
1842 Impl::as_view_of_rank_n<0>(src));
1845 deep_copy(Impl::as_view_of_rank_n<1>(dst),
1846 Impl::as_view_of_rank_n<1>(src));
1849 deep_copy(Impl::as_view_of_rank_n<2>(dst),
1850 Impl::as_view_of_rank_n<2>(src));
1853 deep_copy(Impl::as_view_of_rank_n<3>(dst),
1854 Impl::as_view_of_rank_n<3>(src));
1857 deep_copy(Impl::as_view_of_rank_n<4>(dst),
1858 Impl::as_view_of_rank_n<4>(src));
1861 deep_copy(Impl::as_view_of_rank_n<5>(dst),
1862 Impl::as_view_of_rank_n<5>(src));
1865 deep_copy(Impl::as_view_of_rank_n<6>(dst),
1866 Impl::as_view_of_rank_n<6>(src));
1869 deep_copy(Impl::as_view_of_rank_n<7>(dst),
1870 Impl::as_view_of_rank_n<7>(src));
1873 Kokkos::Impl::throw_runtime_exception(
1874 "Calling DynRankView deep_copy with a view of unexpected rank " +
1875 std::to_string(rank(dst)));
1888 template <
class Space,
class T,
class... P>
1889 struct MirrorDRViewType {
1891 using src_view_type =
typename Kokkos::DynRankView<T, P...>;
1893 using memory_space =
typename Space::memory_space;
1897 std::is_same<memory_space, typename src_view_type::memory_space>::value
1900 using array_layout =
typename src_view_type::array_layout;
1903 using data_type =
typename src_view_type::non_const_data_type;
1905 using dest_view_type = Kokkos::DynRankView<data_type, array_layout, Space>;
1909 std::conditional_t<is_same_memspace, src_view_type, dest_view_type>;
1912 template <
class Space,
class T,
class... P>
1913 struct MirrorDRVType {
1915 using src_view_type =
typename Kokkos::DynRankView<T, P...>;
1917 using memory_space =
typename Space::memory_space;
1921 std::is_same<memory_space, typename src_view_type::memory_space>::value
1924 using array_layout =
typename src_view_type::array_layout;
1927 using data_type =
typename src_view_type::non_const_data_type;
1929 using view_type = Kokkos::DynRankView<data_type, array_layout, Space>;
1939 template <
class T,
class... P,
class... ViewCtorArgs>
1940 inline auto create_mirror(
const DynRankView<T, P...>& src,
1941 const Impl::ViewCtorProp<ViewCtorArgs...>& arg_prop) {
1942 check_view_ctor_args_create_mirror<ViewCtorArgs...>();
1944 auto prop_copy = Impl::with_properties_if_unset(
1945 arg_prop, std::string(src.label()).append(
"_mirror"));
1947 if constexpr (Impl::ViewCtorProp<ViewCtorArgs...>::has_memory_space) {
1948 using dst_type =
typename Impl::MirrorDRVType<
1949 typename Impl::ViewCtorProp<ViewCtorArgs...>::memory_space, T,
1952 return dst_type(prop_copy,
1953 Impl::reconstructLayout(src.layout(), src.rank()));
1955 using src_type = DynRankView<T, P...>;
1956 using dst_type =
typename src_type::HostMirror;
1958 return dst_type(prop_copy,
1959 Impl::reconstructLayout(src.layout(), src.rank()));
1961 #if defined(KOKKOS_COMPILER_INTEL) || \
1962 (defined(KOKKOS_COMPILER_NVCC) && KOKKOS_COMPILER_NVCC >= 1130 && \
1963 !defined(KOKKOS_COMPILER_MSVC))
1964 __builtin_unreachable();
1971 template <
class T,
class... P,
1972 class Enable = std::enable_if_t<
1973 std::is_void_v<
typename ViewTraits<T, P...>::specialize>>>
1974 inline auto create_mirror(
const DynRankView<T, P...>& src) {
1975 return Impl::create_mirror(src, Kokkos::view_alloc());
1979 template <
class T,
class... P,
1980 class Enable = std::enable_if_t<
1981 std::is_void_v<
typename ViewTraits<T, P...>::specialize>>>
1982 inline auto create_mirror(Kokkos::Impl::WithoutInitializing_t wi,
1983 const DynRankView<T, P...>& src) {
1984 return Impl::create_mirror(src, Kokkos::view_alloc(wi));
1988 template <
class Space,
class T,
class... P,
1989 class Enable = std::enable_if_t<
1990 Kokkos::is_space<Space>::value &&
1991 std::is_void_v<
typename ViewTraits<T, P...>::specialize>>>
1992 auto create_mirror(
const Space&,
const Kokkos::DynRankView<T, P...>& src) {
1993 return Impl::create_mirror(
1994 src, Kokkos::view_alloc(
typename Space::memory_space{}));
1998 template <
class Space,
class T,
class... P,
1999 class Enable = std::enable_if_t<
2000 Kokkos::is_space<Space>::value &&
2001 std::is_void_v<
typename ViewTraits<T, P...>::specialize>>>
2002 auto create_mirror(Kokkos::Impl::WithoutInitializing_t wi,
const Space&,
2003 const Kokkos::DynRankView<T, P...>& src) {
2004 return Impl::create_mirror(
2005 src, Kokkos::view_alloc(wi,
typename Space::memory_space{}));
2010 template <
class T,
class... P,
class... ViewCtorArgs,
2011 typename Enable = std::enable_if_t<
2012 std::is_void_v<
typename ViewTraits<T, P...>::specialize>>>
2013 inline auto create_mirror(
const Impl::ViewCtorProp<ViewCtorArgs...>& arg_prop,
2014 const DynRankView<T, P...>& src) {
2015 return Impl::create_mirror(src, arg_prop);
2023 template <
class T,
class... P,
class... ViewCtorArgs>
2024 inline auto create_mirror_view(
2025 const DynRankView<T, P...>& src,
2026 [[maybe_unused]]
const typename Impl::ViewCtorProp<ViewCtorArgs...>&
2028 if constexpr (!Impl::ViewCtorProp<ViewCtorArgs...>::has_memory_space) {
2029 if constexpr (std::is_same<
typename DynRankView<T, P...>::memory_space,
2030 typename DynRankView<
2031 T, P...>::HostMirror::memory_space>::value &&
2032 std::is_same<
typename DynRankView<T, P...>::data_type,
2033 typename DynRankView<
2034 T, P...>::HostMirror::data_type>::value) {
2035 return typename DynRankView<T, P...>::HostMirror(src);
2037 return Kokkos::Impl::choose_create_mirror(src, arg_prop);
2040 if constexpr (Impl::MirrorDRViewType<
typename Impl::ViewCtorProp<
2041 ViewCtorArgs...>::memory_space,
2042 T, P...>::is_same_memspace) {
2043 return typename Impl::MirrorDRViewType<
2044 typename Impl::ViewCtorProp<ViewCtorArgs...>::memory_space, T,
2045 P...>::view_type(src);
2047 return Kokkos::Impl::choose_create_mirror(src, arg_prop);
2050 #if defined(KOKKOS_COMPILER_INTEL) || \
2051 (defined(KOKKOS_COMPILER_NVCC) && KOKKOS_COMPILER_NVCC >= 1130 && \
2052 !defined(KOKKOS_COMPILER_MSVC))
2053 __builtin_unreachable();
2060 template <
class T,
class... P>
2061 inline auto create_mirror_view(
const Kokkos::DynRankView<T, P...>& src) {
2062 return Impl::create_mirror_view(src, Kokkos::view_alloc());
2066 template <
class T,
class... P>
2067 inline auto create_mirror_view(Kokkos::Impl::WithoutInitializing_t wi,
2068 const DynRankView<T, P...>& src) {
2069 return Impl::create_mirror_view(src, Kokkos::view_alloc(wi));
2073 template <
class Space,
class T,
class... P,
2074 class Enable = std::enable_if_t<Kokkos::is_space<Space>::value>>
2075 inline auto create_mirror_view(
const Space&,
2076 const Kokkos::DynRankView<T, P...>& src) {
2077 return Impl::create_mirror_view(
2078 src, Kokkos::view_alloc(
typename Space::memory_space()));
2082 template <
class Space,
class T,
class... P,
2083 typename Enable = std::enable_if_t<Kokkos::is_space<Space>::value>>
2084 inline auto create_mirror_view(Kokkos::Impl::WithoutInitializing_t wi,
2086 const Kokkos::DynRankView<T, P...>& src) {
2087 return Impl::create_mirror_view(
2088 src, Kokkos::view_alloc(
typename Space::memory_space{}, wi));
2093 template <
class T,
class... P,
class... ViewCtorArgs>
2094 inline auto create_mirror_view(
2095 const typename Impl::ViewCtorProp<ViewCtorArgs...>& arg_prop,
2096 const Kokkos::DynRankView<T, P...>& src) {
2097 return Impl::create_mirror_view(src, arg_prop);
2103 template <
class... ViewCtorArgs,
class T,
class... P,
2104 class Enable = std::enable_if_t<
2105 std::is_void<
typename ViewTraits<T, P...>::specialize>::value>>
2106 auto create_mirror_view_and_copy(
2107 [[maybe_unused]]
const Impl::ViewCtorProp<ViewCtorArgs...>& arg_prop,
2108 const Kokkos::DynRankView<T, P...>& src) {
2109 using alloc_prop_input = Impl::ViewCtorProp<ViewCtorArgs...>;
2111 Impl::check_view_ctor_args_create_mirror_view_and_copy<ViewCtorArgs...>();
2113 if constexpr (Impl::MirrorDRViewType<
2114 typename Impl::ViewCtorProp<ViewCtorArgs...>::memory_space,
2115 T, P...>::is_same_memspace) {
2117 if constexpr (!alloc_prop_input::has_execution_space)
2119 "Kokkos::create_mirror_view_and_copy: fence before returning src "
2123 using Space =
typename alloc_prop_input::memory_space;
2124 using Mirror =
typename Impl::MirrorDRViewType<Space, T, P...>::view_type;
2126 auto arg_prop_copy = Impl::with_properties_if_unset(
2127 arg_prop, std::string{}, WithoutInitializing,
2128 typename Space::execution_space{});
2130 std::string& label = Impl::get_property<Impl::LabelTag>(arg_prop_copy);
2131 if (label.empty()) label = src.label();
2132 auto mirror =
typename Mirror::non_const_type{
2133 arg_prop_copy, Impl::reconstructLayout(src.layout(), src.rank())};
2134 if constexpr (alloc_prop_input::has_execution_space) {
2135 deep_copy(Impl::get_property<Impl::ExecutionSpaceTag>(arg_prop_copy),
2138 deep_copy(mirror, src);
2141 #if defined(KOKKOS_COMPILER_NVCC) && KOKKOS_COMPILER_NVCC >= 1130 && \
2142 !defined(KOKKOS_COMPILER_MSVC)
2143 __builtin_unreachable();
2147 template <
class Space,
class T,
class... P>
2148 auto create_mirror_view_and_copy(
const Space&,
2149 const Kokkos::DynRankView<T, P...>& src,
2150 std::string
const& name =
"") {
2151 return create_mirror_view_and_copy(
2152 Kokkos::view_alloc(
typename Space::memory_space{}, name), src);
2163 template <
class... ViewCtorArgs,
class T,
class... P>
2164 inline void impl_resize(
const Impl::ViewCtorProp<ViewCtorArgs...>& arg_prop,
2165 DynRankView<T, P...>& v,
const size_t n0,
2166 const size_t n1,
const size_t n2,
const size_t n3,
2167 const size_t n4,
const size_t n5,
const size_t n6,
2169 using drview_type = DynRankView<T, P...>;
2170 using alloc_prop_input = Impl::ViewCtorProp<ViewCtorArgs...>;
2173 "Can only resize managed views");
2174 static_assert(!alloc_prop_input::has_label,
2175 "The view constructor arguments passed to Kokkos::resize "
2176 "must not include a label!");
2177 static_assert(!alloc_prop_input::has_pointer,
2178 "The view constructor arguments passed to Kokkos::resize must "
2179 "not include a pointer!");
2180 static_assert(!alloc_prop_input::has_memory_space,
2181 "The view constructor arguments passed to Kokkos::resize must "
2182 "not include a memory space instance!");
2184 auto prop_copy = Impl::with_properties_if_unset(
2185 arg_prop, v.label(),
typename drview_type::execution_space{});
2187 drview_type v_resized(prop_copy, n0, n1, n2, n3, n4, n5, n6, n7);
2189 if constexpr (alloc_prop_input::has_execution_space)
2190 Kokkos::Impl::DynRankViewRemap<drview_type, drview_type>(
2191 Impl::get_property<Impl::ExecutionSpaceTag>(prop_copy), v_resized, v);
2193 Kokkos::Impl::DynRankViewRemap<drview_type, drview_type>(v_resized, v);
2194 Kokkos::fence(
"Kokkos::resize(DynRankView)");
2199 template <
class T,
class... P>
2200 inline void resize(DynRankView<T, P...>& v,
2201 const size_t n0 = KOKKOS_INVALID_INDEX,
2202 const size_t n1 = KOKKOS_INVALID_INDEX,
2203 const size_t n2 = KOKKOS_INVALID_INDEX,
2204 const size_t n3 = KOKKOS_INVALID_INDEX,
2205 const size_t n4 = KOKKOS_INVALID_INDEX,
2206 const size_t n5 = KOKKOS_INVALID_INDEX,
2207 const size_t n6 = KOKKOS_INVALID_INDEX,
2208 const size_t n7 = KOKKOS_INVALID_INDEX) {
2209 impl_resize(Impl::ViewCtorProp<>{}, v, n0, n1, n2, n3, n4, n5, n6, n7);
2212 template <
class... ViewCtorArgs,
class T,
class... P>
2213 void resize(
const Impl::ViewCtorProp<ViewCtorArgs...>& arg_prop,
2214 DynRankView<T, P...>& v,
2215 const size_t n0 = KOKKOS_IMPL_CTOR_DEFAULT_ARG,
2216 const size_t n1 = KOKKOS_IMPL_CTOR_DEFAULT_ARG,
2217 const size_t n2 = KOKKOS_IMPL_CTOR_DEFAULT_ARG,
2218 const size_t n3 = KOKKOS_IMPL_CTOR_DEFAULT_ARG,
2219 const size_t n4 = KOKKOS_IMPL_CTOR_DEFAULT_ARG,
2220 const size_t n5 = KOKKOS_IMPL_CTOR_DEFAULT_ARG,
2221 const size_t n6 = KOKKOS_IMPL_CTOR_DEFAULT_ARG,
2222 const size_t n7 = KOKKOS_IMPL_CTOR_DEFAULT_ARG) {
2223 impl_resize(arg_prop, v, n0, n1, n2, n3, n4, n5, n6, n7);
2226 template <
class I,
class T,
class... P>
2227 inline std::enable_if_t<Impl::is_view_ctor_property<I>::value> resize(
2228 const I& arg_prop, DynRankView<T, P...>& v,
2229 const size_t n0 = KOKKOS_INVALID_INDEX,
2230 const size_t n1 = KOKKOS_INVALID_INDEX,
2231 const size_t n2 = KOKKOS_INVALID_INDEX,
2232 const size_t n3 = KOKKOS_INVALID_INDEX,
2233 const size_t n4 = KOKKOS_INVALID_INDEX,
2234 const size_t n5 = KOKKOS_INVALID_INDEX,
2235 const size_t n6 = KOKKOS_INVALID_INDEX,
2236 const size_t n7 = KOKKOS_INVALID_INDEX) {
2237 impl_resize(Kokkos::view_alloc(arg_prop), v, n0, n1, n2, n3, n4, n5, n6, n7);
2242 template <
class... ViewCtorArgs,
class T,
class... P>
2243 inline void impl_realloc(DynRankView<T, P...>& v,
const size_t n0,
2244 const size_t n1,
const size_t n2,
const size_t n3,
2245 const size_t n4,
const size_t n5,
const size_t n6,
2247 const Impl::ViewCtorProp<ViewCtorArgs...>& arg_prop) {
2248 using drview_type = DynRankView<T, P...>;
2249 using alloc_prop_input = Impl::ViewCtorProp<ViewCtorArgs...>;
2252 "Can only realloc managed views");
2253 static_assert(!alloc_prop_input::has_label,
2254 "The view constructor arguments passed to Kokkos::realloc must "
2255 "not include a label!");
2256 static_assert(!alloc_prop_input::has_pointer,
2257 "The view constructor arguments passed to Kokkos::realloc must "
2258 "not include a pointer!");
2259 static_assert(!alloc_prop_input::has_memory_space,
2260 "The view constructor arguments passed to Kokkos::realloc must "
2261 "not include a memory space instance!");
2263 auto arg_prop_copy = Impl::with_properties_if_unset(arg_prop, v.label());
2266 v = drview_type(arg_prop_copy, n0, n1, n2, n3, n4, n5, n6, n7);
2269 template <
class T,
class... P,
class... ViewCtorArgs>
2270 inline void realloc(
const Impl::ViewCtorProp<ViewCtorArgs...>& arg_prop,
2271 DynRankView<T, P...>& v,
2272 const size_t n0 = KOKKOS_INVALID_INDEX,
2273 const size_t n1 = KOKKOS_INVALID_INDEX,
2274 const size_t n2 = KOKKOS_INVALID_INDEX,
2275 const size_t n3 = KOKKOS_INVALID_INDEX,
2276 const size_t n4 = KOKKOS_INVALID_INDEX,
2277 const size_t n5 = KOKKOS_INVALID_INDEX,
2278 const size_t n6 = KOKKOS_INVALID_INDEX,
2279 const size_t n7 = KOKKOS_INVALID_INDEX) {
2280 impl_realloc(v, n0, n1, n2, n3, n4, n5, n6, n7, arg_prop);
2283 template <
class T,
class... P>
2284 inline void realloc(DynRankView<T, P...>& v,
2285 const size_t n0 = KOKKOS_INVALID_INDEX,
2286 const size_t n1 = KOKKOS_INVALID_INDEX,
2287 const size_t n2 = KOKKOS_INVALID_INDEX,
2288 const size_t n3 = KOKKOS_INVALID_INDEX,
2289 const size_t n4 = KOKKOS_INVALID_INDEX,
2290 const size_t n5 = KOKKOS_INVALID_INDEX,
2291 const size_t n6 = KOKKOS_INVALID_INDEX,
2292 const size_t n7 = KOKKOS_INVALID_INDEX) {
2293 impl_realloc(v, n0, n1, n2, n3, n4, n5, n6, n7, Impl::ViewCtorProp<>{});
2296 template <
class I,
class T,
class... P>
2297 inline std::enable_if_t<Impl::is_view_ctor_property<I>::value> realloc(
2298 const I& arg_prop, DynRankView<T, P...>& v,
2299 const size_t n0 = KOKKOS_INVALID_INDEX,
2300 const size_t n1 = KOKKOS_INVALID_INDEX,
2301 const size_t n2 = KOKKOS_INVALID_INDEX,
2302 const size_t n3 = KOKKOS_INVALID_INDEX,
2303 const size_t n4 = KOKKOS_INVALID_INDEX,
2304 const size_t n5 = KOKKOS_INVALID_INDEX,
2305 const size_t n6 = KOKKOS_INVALID_INDEX,
2306 const size_t n7 = KOKKOS_INVALID_INDEX) {
2307 impl_realloc(v, n0, n1, n2, n3, n4, n5, n6, n7, Kokkos::view_alloc(arg_prop));
2312 #ifdef KOKKOS_IMPL_PUBLIC_INCLUDE_NOTDEFINED_DYNRANKVIEW
2313 #undef KOKKOS_IMPL_PUBLIC_INCLUDE
2314 #undef KOKKOS_IMPL_PUBLIC_INCLUDE_NOTDEFINED_DYNRANKVIEW
Memory layout tag indicating left-to-right (Fortran scheme) striding of multi-indices.
KOKKOS_INLINE_FUNCTION bool dyn_rank_view_verify_operator_bounds(const iType0 &, const MapType &)
Debug bounds-checking routines.
Memory layout tag indicated arbitrarily strided multi-index mapping into contiguous memory...
View to an array of data.
Memory management for host memory.
Memory layout tag indicating right-to-left (C or lexigraphical scheme) striding of multi-indices...
Assign compatible default mappings.
Execution policy for work over a range of an integral type.
Traits class for accessing attributes of a View.