This commit implements layout_left in support of C++23 mdspan (https://wg21.link/p0009). layout_left is a layout mapping policy whose index mapping corresponds to the memory layout of Fortran arrays. Thus the left most index has stride-1 access, and the right most index is associated with the largest stride. Co-authored-by: Damien L-G <dalg24@gmail.com> Differential Revision: https://reviews.llvm.org/D153783
169 lines
6.6 KiB
C++
169 lines
6.6 KiB
C++
// -*- C++ -*-
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
// Kokkos v. 4.0
|
|
// Copyright (2022) National Technology & Engineering
|
|
// Solutions of Sandia, LLC (NTESS).
|
|
//
|
|
// Under the terms of Contract DE-NA0003525 with NTESS,
|
|
// the U.S. Government retains certain rights in this software.
|
|
//
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
#ifndef _LIBCPP___MDSPAN_LAYOUT_RIGHT_H
|
|
#define _LIBCPP___MDSPAN_LAYOUT_RIGHT_H
|
|
|
|
#include <__assert>
|
|
#include <__config>
|
|
#include <__fwd/mdspan.h>
|
|
#include <__mdspan/extents.h>
|
|
#include <__type_traits/is_constructible.h>
|
|
#include <__type_traits/is_convertible.h>
|
|
#include <__type_traits/is_nothrow_constructible.h>
|
|
#include <__utility/integer_sequence.h>
|
|
#include <cinttypes>
|
|
#include <cstddef>
|
|
#include <limits>
|
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
|
# pragma GCC system_header
|
|
#endif
|
|
|
|
_LIBCPP_PUSH_MACROS
|
|
#include <__undef_macros>
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
#if _LIBCPP_STD_VER >= 23
|
|
|
|
template <class _Extents>
|
|
class layout_right::mapping {
|
|
public:
|
|
static_assert(__mdspan_detail::__is_extents<_Extents>::value,
|
|
"layout_right::mapping template argument must be a specialization of extents.");
|
|
|
|
using extents_type = _Extents;
|
|
using index_type = typename extents_type::index_type;
|
|
using size_type = typename extents_type::size_type;
|
|
using rank_type = typename extents_type::rank_type;
|
|
using layout_type = layout_right;
|
|
|
|
private:
|
|
_LIBCPP_HIDE_FROM_ABI static constexpr bool __required_span_size_is_representable(const extents_type& __ext) {
|
|
if constexpr (extents_type::rank() == 0)
|
|
return true;
|
|
|
|
index_type __prod = __ext.extent(0);
|
|
for (rank_type __r = 1; __r < extents_type::rank(); __r++) {
|
|
bool __overflowed = __builtin_mul_overflow(__prod, __ext.extent(__r), &__prod);
|
|
if (__overflowed)
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
static_assert((extents_type::rank_dynamic() > 0) || __required_span_size_is_representable(extents_type()),
|
|
"layout_right::mapping product of static extents must be representable as index_type.");
|
|
|
|
public:
|
|
// [mdspan.layout.right.cons], constructors
|
|
_LIBCPP_HIDE_FROM_ABI constexpr mapping() noexcept = default;
|
|
_LIBCPP_HIDE_FROM_ABI constexpr mapping(const mapping&) noexcept = default;
|
|
_LIBCPP_HIDE_FROM_ABI constexpr mapping(const extents_type& __ext) noexcept : __extents_(__ext) {
|
|
_LIBCPP_ASSERT(__required_span_size_is_representable(__ext),
|
|
"layout_right::mapping extents ctor: product of extents must be representable as index_type.");
|
|
}
|
|
|
|
template <class _OtherExtents>
|
|
requires(is_constructible_v<extents_type, _OtherExtents>)
|
|
_LIBCPP_HIDE_FROM_ABI constexpr explicit(!is_convertible_v<_OtherExtents, extents_type>)
|
|
mapping(const mapping<_OtherExtents>& __other) noexcept
|
|
: __extents_(__other.extents()) {
|
|
_LIBCPP_ASSERT(
|
|
__mdspan_detail::__is_representable_as<index_type>(__other.required_span_size()),
|
|
"layout_right::mapping converting ctor: other.required_span_size() must be representable as index_type.");
|
|
}
|
|
|
|
template <class _OtherExtents>
|
|
requires(is_constructible_v<extents_type, _OtherExtents> && _OtherExtents::rank() <= 1)
|
|
_LIBCPP_HIDE_FROM_ABI constexpr explicit(!is_convertible_v<_OtherExtents, extents_type>)
|
|
mapping(const layout_left::mapping<_OtherExtents>& __other) noexcept
|
|
: __extents_(__other.extents()) {
|
|
_LIBCPP_ASSERT(
|
|
__mdspan_detail::__is_representable_as<index_type>(__other.required_span_size()),
|
|
"layout_right::mapping converting ctor: other.required_span_size() must be representable as index_type.");
|
|
}
|
|
|
|
// FIXME: add when we add other layouts
|
|
# if 0
|
|
template<class _OtherExtents>
|
|
constexpr explicit(extents_type::rank() > 0)
|
|
mapping(const layout_stride::mapping_<OtherExtents>&) noexcept;
|
|
# endif
|
|
|
|
_LIBCPP_HIDE_FROM_ABI constexpr mapping& operator=(const mapping&) noexcept = default;
|
|
|
|
// [mdspan.layout.right.obs], observers
|
|
_LIBCPP_HIDE_FROM_ABI constexpr const extents_type& extents() const noexcept { return __extents_; }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI constexpr index_type required_span_size() const noexcept {
|
|
index_type __size = 1;
|
|
for (size_t __r = 0; __r < extents_type::rank(); __r++)
|
|
__size *= __extents_.extent(__r);
|
|
return __size;
|
|
}
|
|
|
|
template <class... _Indices>
|
|
requires((sizeof...(_Indices) == extents_type::rank()) && (is_convertible_v<_Indices, index_type> && ...) &&
|
|
(is_nothrow_constructible_v<index_type, _Indices> && ...))
|
|
_LIBCPP_HIDE_FROM_ABI constexpr index_type operator()(_Indices... __idx) const noexcept {
|
|
_LIBCPP_ASSERT(__mdspan_detail::__is_multidimensional_index_in(__extents_, __idx...),
|
|
"layout_right::mapping: out of bounds indexing");
|
|
return [&]<size_t... _Pos>(index_sequence<_Pos...>) {
|
|
index_type __res = 0;
|
|
((__res = static_cast<index_type>(__idx) + __extents_.extent(_Pos) * __res), ...);
|
|
return __res;
|
|
}(make_index_sequence<sizeof...(_Indices)>());
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI static constexpr bool is_always_unique() noexcept { return true; }
|
|
_LIBCPP_HIDE_FROM_ABI static constexpr bool is_always_exhaustive() noexcept { return true; }
|
|
_LIBCPP_HIDE_FROM_ABI static constexpr bool is_always_strided() noexcept { return true; }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI static constexpr bool is_unique() noexcept { return true; }
|
|
_LIBCPP_HIDE_FROM_ABI static constexpr bool is_exhaustive() noexcept { return true; }
|
|
_LIBCPP_HIDE_FROM_ABI static constexpr bool is_strided() noexcept { return true; }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI constexpr index_type stride(rank_type __r) const noexcept
|
|
requires(extents_type::rank() > 0)
|
|
{
|
|
_LIBCPP_ASSERT(__r < extents_type::rank(), "layout_right::mapping::stride(): invalid rank index");
|
|
index_type __s = 1;
|
|
for (rank_type __i = extents_type::rank() - 1; __i > __r; __i--)
|
|
__s *= __extents_.extent(__i);
|
|
return __s;
|
|
}
|
|
|
|
template <class _OtherExtents>
|
|
requires(_OtherExtents::rank() == extents_type::rank())
|
|
_LIBCPP_HIDE_FROM_ABI friend constexpr bool
|
|
operator==(const mapping& __lhs, const mapping<_OtherExtents>& __rhs) noexcept {
|
|
return __lhs.extents() == __rhs.extents();
|
|
}
|
|
|
|
private:
|
|
extents_type __extents_{}; // exposition only
|
|
};
|
|
|
|
#endif // _LIBCPP_STD_VER >= 23
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
_LIBCPP_POP_MACROS
|
|
|
|
#endif // _LIBCPP___MDSPAN_LAYOUT_RIGHT_H
|