12#include <Kokkos_Assert.hpp>
13#include <Kokkos_Macros.hpp>
15#include "detail/type_seq.hpp"
25template <
class... DDims>
33template <
class... Tags>
44concept strided_discrete_domain = is_strided_discrete_domain_v<T>;
50template <
class... Tags>
53 using type = TypeSeq<Tags...>;
56template <
class T,
class U>
59template <
class... DDims,
class... ODDims>
67template <
class... ODDims>
72 return DiscreteVector<ODDims...>((get<ODDims>(lhs) * get<ODDims>(rhs))...);
75template <
class... DDims>
82 type_seq_is_unique_v<detail::TypeSeq<DDims...>>,
83 "The dimensions of a StridedDiscreteDomain must be unique");
86 using discrete_element_type = DiscreteElement<DDims...>;
91 DiscreteElement<DDims...> m_element_begin;
98 static KOKKOS_FUNCTION
constexpr std::size_t
rank()
100 return sizeof...(DDims);
106 template <
concepts::strided_discrete_domain... DDoms>
108 : m_element_begin(domains.front()...)
109 , m_extents(domains.extents()...)
110 , m_strides(domains.strides()...)
115
116
117
118
120 discrete_element_type
const& element_begin,
121 discrete_vector_type
const& extents,
122 discrete_vector_type
const& strides)
123 : m_element_begin(element_begin)
140 template <
class... ODims>
143 if (
empty() && other.empty()) {
146 return m_element_begin == other.m_element_begin && m_extents == other.m_extents
147 && m_strides == other.m_strides;
150#if !defined(__cpp_impl_three_way_comparison
) || __cpp_impl_three_way_comparison
< 201902L
152 template <
class...
ODims>
155 return !(*
this ==
other);
159 KOKKOS_FUNCTION
constexpr std::size_t
size()
const
161 return (1UL * ... * get<DDims>(m_extents));
164 KOKKOS_FUNCTION
constexpr discrete_vector_type
extents()
const noexcept
169 KOKKOS_FUNCTION
constexpr discrete_vector_type
strides()
const noexcept
174 template <
class QueryDDim>
180 KOKKOS_FUNCTION
constexpr discrete_element_type
front()
const noexcept
182 return m_element_begin;
185 KOKKOS_FUNCTION
constexpr discrete_element_type
back()
const noexcept
187 return discrete_element_type(
188 (DiscreteElement<DDims>(m_element_begin)
189 + (get<DDims>(m_extents) - 1) * get<DDims>(m_strides))...);
213 discrete_vector_type n1,
214 discrete_vector_type n2)
const
219 KOKKOS_FUNCTION
constexpr DiscreteElement<DDims...>
operator()(
222 return m_element_begin + prod(dvect, m_strides);
225 template <
class... DElems>
226 KOKKOS_FUNCTION
bool contains(DElems
const&... delems)
const noexcept
229 sizeof...(DDims) == (0 + ... + DElems::size()),
230 "Invalid number of dimensions");
231 static_assert((is_discrete_element_v<DElems> && ...),
"Expected DiscreteElements");
232 auto const contains_1d = [](DiscreteElementType
const i,
233 DiscreteElementType
const b,
234 DiscreteVectorElement
const n,
235 DiscreteVectorElement
const s) {
236 return (i >= b) && (i < (b + (n - 1) * s + 1)) && ((i - b) % s == 0);
238 DiscreteElement<DDims...>
const delem(delems...);
239 for (std::size_t i = 0; i <
rank(); ++i) {
241 detail::array(delem)[i],
242 detail::array(m_element_begin)[i],
243 detail::array(m_extents)[i],
244 detail::array(m_strides)[i])) {
251 template <
class... DElems>
253 DElems
const&... delems)
const noexcept
256 sizeof...(DDims) == (0 + ... + DElems::size()),
257 "Invalid number of dimensions");
258 static_assert((is_discrete_element_v<DElems> && ...),
"Expected DiscreteElements");
259 KOKKOS_ASSERT(contains(delems...))
261 ((DiscreteElement<DDims>(take<DDims>(delems...))
262 - DiscreteElement<DDims>(m_element_begin))
266 KOKKOS_FUNCTION
constexpr bool empty()
const noexcept
271 KOKKOS_FUNCTION
constexpr explicit operator bool()
276 KOKKOS_FUNCTION
auto begin()
const
277 requires(
sizeof...(DDims) == 1)
280 std::tuple_element_t<0, std::tuple<DDims...>>>(
front(), m_strides);
283 KOKKOS_FUNCTION
auto end()
const
284 requires(
sizeof...(DDims) == 1)
288 std::tuple<DDims...>>>(m_element_begin + m_extents * m_strides, m_strides);
291 KOKKOS_FUNCTION
auto cbegin()
const
292 requires(
sizeof...(DDims) == 1)
295 std::tuple_element_t<0, std::tuple<DDims...>>>(
front(), m_strides);
298 KOKKOS_FUNCTION
auto cend()
const
299 requires(
sizeof...(DDims) == 1)
303 std::tuple<DDims...>>>(m_element_begin + m_extents * m_strides, m_strides);
306 KOKKOS_FUNCTION
constexpr decltype(
auto)
operator[](std::size_t n)
307 requires(
sizeof...(DDims) == 1)
312 KOKKOS_FUNCTION
constexpr decltype(
auto)
operator[](std::size_t n)
const
313 requires(
sizeof...(DDims) == 1)
326 using discrete_element_type = DiscreteElement<>;
330 static KOKKOS_FUNCTION
constexpr std::size_t
rank()
338 template <
class... ODDims>
345
346
347
348
350 [[
maybe_unused]] discrete_element_type
const& element_begin,
373#if !defined(__cpp_impl_three_way_comparison
) || __cpp_impl_three_way_comparison
< 201902L
377 return !(*
this ==
other);
381 static KOKKOS_FUNCTION
constexpr std::size_t
size()
386 static KOKKOS_FUNCTION
constexpr discrete_vector_type
extents()
noexcept
391 static KOKKOS_FUNCTION
constexpr discrete_element_type
front()
noexcept
396 static KOKKOS_FUNCTION
constexpr discrete_element_type
back()
noexcept
422 discrete_vector_type ,
423 discrete_vector_type )
const
428 KOKKOS_FUNCTION
constexpr DiscreteElement<>
operator()(
434 static KOKKOS_FUNCTION
bool contains()
noexcept
439 static KOKKOS_FUNCTION
bool contains(DiscreteElement<>)
noexcept
454 static KOKKOS_FUNCTION
constexpr bool empty()
noexcept
459 KOKKOS_FUNCTION
constexpr explicit operator bool()
465template <
class... QueryDDims,
class... DDims>
475struct ConvertTypeSeqToStridedDiscreteDomain;
477template <
class... DDims>
478struct ConvertTypeSeqToStridedDiscreteDomain<detail::TypeSeq<DDims...>>
484using convert_type_seq_to_strided_discrete_domain_t =
485 typename ConvertTypeSeqToStridedDiscreteDomain<T>::type;
490template <
class... DDimsA,
class... DDimsB>
495 using TagSeqA = detail::TypeSeq<DDimsA...>;
496 using TagSeqB = detail::TypeSeq<DDimsB...>;
498 using type_seq_r = type_seq_remove_t<TagSeqA, TagSeqB>;
499 return detail::convert_type_seq_to_strided_discrete_domain_t<type_seq_r>(DDom_a);
505template <
class... DDimsB,
class... DDimsA>
509 using TagSeqA = detail::TypeSeq<DDimsA...>;
510 using TagSeqB = detail::TypeSeq<DDimsB...>;
512 using type_seq_r = type_seq_remove_t<TagSeqA, TagSeqB>;
513 return detail::convert_type_seq_to_strided_discrete_domain_t<type_seq_r>(DDom_a);
519template <
typename DDim1,
typename DDim2,
typename DDimA,
typename... DDimsB>
520KOKKOS_FUNCTION
constexpr std::conditional_t<
521 std::is_same_v<DDimA, DDim1>,
528 if constexpr (std::is_same_v<DDimA, DDim1>) {
538template <
typename DDim1,
typename DDim2,
typename... DDimsA,
typename... DDimsB>
544 using TagSeqA = detail::TypeSeq<DDimsA...>;
545 using TagSeqB = detail::TypeSeq<DDim1>;
546 using TagSeqC = detail::TypeSeq<DDim2>;
548 using type_seq_r =
ddc::type_seq_replace_t<TagSeqA, TagSeqB, TagSeqC>;
549 return ddc::detail::convert_type_seq_to_strided_discrete_domain_t<type_seq_r>(
550 detail::replace_dim_of_1d<
557template <
class... QueryDDims,
class... DDims>
564template <
class... QueryDDims,
class... DDims>
565KOKKOS_FUNCTION
constexpr DiscreteElement<QueryDDims...>
front(
571template <
class... QueryDDims,
class... DDims>
572KOKKOS_FUNCTION
constexpr DiscreteElement<QueryDDims...>
back(
582 DiscreteElement<DDim> m_value = DiscreteElement<DDim>();
587 using iterator_category = std::random_access_iterator_tag;
589 using value_type = DiscreteElement<DDim>;
591 using difference_type = std::ptrdiff_t;
596 DiscreteElement<DDim> value,
603 KOKKOS_FUNCTION
constexpr DiscreteElement<DDim>
operator*()
const noexcept
636 if (n >=
static_cast<difference_type>(0)) {
637 m_value +=
static_cast<DiscreteElementType>(n) * m_stride;
639 m_value -=
static_cast<DiscreteElementType>(-n) * m_stride;
646 if (n >=
static_cast<difference_type>(0)) {
647 m_value -=
static_cast<DiscreteElementType>(n) * m_stride;
649 m_value +=
static_cast<DiscreteElementType>(-n) * m_stride;
654 KOKKOS_FUNCTION
constexpr DiscreteElement<DDim>
operator[](difference_type n)
const
656 return m_value + n * m_stride;
659 friend KOKKOS_FUNCTION
constexpr bool operator==(
663 return xx.m_value == yy.m_value;
666#if !defined(__cpp_impl_three_way_comparison
) || __cpp_impl_three_way_comparison
< 201902L
676 friend KOKKOS_FUNCTION
constexpr bool operator<(
680 return xx.m_value < yy.m_value;
683 friend KOKKOS_FUNCTION
constexpr bool operator>(
690 friend KOKKOS_FUNCTION
constexpr bool operator<=(
697 friend KOKKOS_FUNCTION
constexpr bool operator>=(
725 friend KOKKOS_FUNCTION
constexpr difference_type
operator-(
729 return (yy.m_value > xx.m_value) ? (-
static_cast<difference_type>(yy.m_value - xx.m_value))
730 : (xx.m_value - yy.m_value);
friend class DiscreteDomain
KOKKOS_DEFAULTED_FUNCTION constexpr DiscreteElement()=default
KOKKOS_FUNCTION constexpr bool operator!=(DiscreteVector< OTags... > const &rhs) const noexcept
KOKKOS_DEFAULTED_FUNCTION constexpr DiscreteVector()=default
Impl & operator=(Impl &&x)=default
KOKKOS_FUNCTION Coordinate< CDim > origin() const noexcept
Lower bound index of the mesh.
KOKKOS_FUNCTION discrete_element_type front() const noexcept
Lower bound index of the mesh.
KOKKOS_FUNCTION Coordinate< CDim > coordinate(discrete_element_type const &icoord) const noexcept
Convert a mesh index into a position in CDim
Impl(Impl const &)=delete
KOKKOS_FUNCTION std::size_t n_period() const
Number of steps in a period.
Impl(Impl< DDim, OriginMemorySpace > const &impl)
Impl(Coordinate< CDim > origin, Real step, std::size_t n_period)
Construct a Impl from a point and a spacing step.
KOKKOS_FUNCTION Real step() const
Spacing step of the mesh.
Impl & operator=(Impl const &x)=delete
PeriodicSampling models a periodic discretization of the provided continuous dimension.
static std::tuple< typename DDim::template Impl< DDim, Kokkos::HostSpace >, DiscreteDomain< DDim > > init(Coordinate< CDim > a, Coordinate< CDim > b, DiscreteVector< DDim > n, DiscreteVector< DDim > n_period)
Construct a Impl<Kokkos::HostSpace> and associated discrete_domain_type from a segment and a number ...
std::tuple< Impl< DDim, Kokkos::HostSpace >, DiscreteDomain< DDim >, DiscreteDomain< DDim >, DiscreteDomain< DDim >, DiscreteDomain< DDim > > init_ghosted(Coordinate< CDim > a, Coordinate< CDim > b, DiscreteVector< DDim > n, DiscreteVector< DDim > n_period, DiscreteVector< DDim > n_ghosts_before, DiscreteVector< DDim > n_ghosts_after)
Construct a periodic DiscreteDomain from a segment and a number of points n.
std::tuple< Impl< DDim, Kokkos::HostSpace >, DiscreteDomain< DDim >, DiscreteDomain< DDim >, DiscreteDomain< DDim >, DiscreteDomain< DDim > > init_ghosted(Coordinate< CDim > a, Coordinate< CDim > b, DiscreteVector< DDim > n, DiscreteVector< DDim > n_period, DiscreteVector< DDim > n_ghosts)
Construct a periodic DiscreteDomain from a segment and a number of points n.
ScopeGuard & operator=(ScopeGuard const &x)=delete
ScopeGuard(ScopeGuard &&x) noexcept=delete
ScopeGuard & operator=(ScopeGuard &&x) noexcept=delete
ScopeGuard(int, char **&)
ScopeGuard(ScopeGuard const &x)=delete
static KOKKOS_FUNCTION bool contains(DiscreteElement<>) noexcept
KOKKOS_FUNCTION constexpr SparseDiscreteDomain remove(discrete_vector_type, discrete_vector_type) const
KOKKOS_FUNCTION constexpr SparseDiscreteDomain take_first(discrete_vector_type) const
static KOKKOS_FUNCTION constexpr std::size_t rank()
KOKKOS_DEFAULTED_FUNCTION constexpr SparseDiscreteDomain()=default
KOKKOS_FUNCTION constexpr DiscreteElement operator()(DiscreteVector<> const &) const noexcept
KOKKOS_FUNCTION constexpr SparseDiscreteDomain remove_last(discrete_vector_type) const
static KOKKOS_FUNCTION DiscreteVector distance_from_front() noexcept
static KOKKOS_FUNCTION constexpr std::size_t size()
static KOKKOS_FUNCTION constexpr bool empty() noexcept
static KOKKOS_FUNCTION DiscreteVector distance_from_front(DiscreteElement<>) noexcept
KOKKOS_FUNCTION constexpr bool operator==(SparseDiscreteDomain const &) const
static KOKKOS_FUNCTION constexpr discrete_element_type back() noexcept
static KOKKOS_FUNCTION bool contains() noexcept
KOKKOS_FUNCTION constexpr SparseDiscreteDomain take_last(discrete_vector_type) const
KOKKOS_FUNCTION constexpr operator bool()
KOKKOS_DEFAULTED_FUNCTION SparseDiscreteDomain & operator=(SparseDiscreteDomain const &x)=default
KOKKOS_DEFAULTED_FUNCTION SparseDiscreteDomain & operator=(SparseDiscreteDomain &&x)=default
KOKKOS_FUNCTION constexpr SparseDiscreteDomain remove_first(discrete_vector_type) const
KOKKOS_DEFAULTED_FUNCTION SparseDiscreteDomain(SparseDiscreteDomain const &x)=default
KOKKOS_DEFAULTED_FUNCTION ~SparseDiscreteDomain()=default
static KOKKOS_FUNCTION constexpr discrete_element_type front() noexcept
KOKKOS_FUNCTION constexpr SparseDiscreteDomain(SparseDiscreteDomain< ODDims... > const &)
static KOKKOS_FUNCTION constexpr discrete_vector_type extents() noexcept
KOKKOS_DEFAULTED_FUNCTION SparseDiscreteDomain(SparseDiscreteDomain &&x)=default
KOKKOS_FUNCTION constexpr discrete_element_type back() const noexcept
KOKKOS_FUNCTION constexpr SparseDiscreteDomain remove_first(discrete_vector_type n) const
static KOKKOS_FUNCTION constexpr std::size_t rank()
KOKKOS_DEFAULTED_FUNCTION SparseDiscreteDomain & operator=(SparseDiscreteDomain const &x)=default
KOKKOS_FUNCTION constexpr SparseDiscreteDomain take_last(discrete_vector_type n) const
KOKKOS_FUNCTION DiscreteVector< DDims... > distance_from_front(DElems const &... delems) const noexcept
KOKKOS_FUNCTION constexpr auto discrete_elements() const noexcept
KOKKOS_FUNCTION constexpr SparseDiscreteDomain remove(discrete_vector_type n1, discrete_vector_type n2) const
KOKKOS_FUNCTION constexpr decltype(auto) operator[](std::size_t n) const
SparseDiscreteDomain(Kokkos::View< DiscreteElement< DDims > *, Kokkos::SharedSpace > const &... views)
Construct a SparseDiscreteDomain with Kokkos::View explicitly listing the discrete elements.
KOKKOS_DEFAULTED_FUNCTION SparseDiscreteDomain & operator=(SparseDiscreteDomain &&x)=default
KOKKOS_FUNCTION constexpr std::size_t size() const
KOKKOS_FUNCTION constexpr bool operator==(SparseDiscreteDomain< ODims... > const &other) const
KOKKOS_FUNCTION bool contains(DElems const &... delems) const noexcept
KOKKOS_FUNCTION constexpr decltype(auto) operator[](std::size_t n)
KOKKOS_FUNCTION constexpr SparseDiscreteDomain take_first(discrete_vector_type n) const
KOKKOS_DEFAULTED_FUNCTION SparseDiscreteDomain()=default
KOKKOS_DEFAULTED_FUNCTION SparseDiscreteDomain(SparseDiscreteDomain &&x)=default
KOKKOS_FUNCTION constexpr discrete_element_type front() const noexcept
KOKKOS_FUNCTION constexpr operator bool()
KOKKOS_FUNCTION constexpr bool empty() const noexcept
KOKKOS_FUNCTION constexpr SparseDiscreteDomain(DDoms const &... domains)
Construct a SparseDiscreteDomain by copies and merge of domains.
KOKKOS_FUNCTION constexpr DiscreteElement< DDims... > operator()(DiscreteVector< DDims... > const &dvect) const noexcept
KOKKOS_DEFAULTED_FUNCTION SparseDiscreteDomain(SparseDiscreteDomain const &x)=default
KOKKOS_FUNCTION constexpr SparseDiscreteDomain remove_last(discrete_vector_type n) const
friend class SparseDiscreteDomain
KOKKOS_FUNCTION constexpr discrete_vector_type extents() const noexcept
KOKKOS_FUNCTION constexpr DiscreteVector< QueryDDim > extent() const noexcept
KOKKOS_DEFAULTED_FUNCTION ~SparseDiscreteDomain()=default
static KOKKOS_FUNCTION DiscreteVector distance_from_front() noexcept
KOKKOS_DEFAULTED_FUNCTION StridedDiscreteDomain & operator=(StridedDiscreteDomain &&x)=default
KOKKOS_FUNCTION constexpr StridedDiscreteDomain take_first(discrete_vector_type) const
static KOKKOS_FUNCTION constexpr std::size_t size()
KOKKOS_FUNCTION constexpr StridedDiscreteDomain(discrete_element_type const &element_begin, discrete_vector_type const &size, discrete_vector_type const &strides)
Construct a StridedDiscreteDomain starting from element_begin with size points.
KOKKOS_FUNCTION constexpr StridedDiscreteDomain remove(discrete_vector_type, discrete_vector_type) const
static KOKKOS_FUNCTION bool contains(DiscreteElement<>) noexcept
static KOKKOS_FUNCTION constexpr discrete_element_type front() noexcept
KOKKOS_FUNCTION constexpr StridedDiscreteDomain take_last(discrete_vector_type) const
KOKKOS_FUNCTION constexpr bool operator==(StridedDiscreteDomain const &) const
KOKKOS_FUNCTION constexpr StridedDiscreteDomain remove_first(discrete_vector_type) const
static KOKKOS_FUNCTION bool contains() noexcept
KOKKOS_FUNCTION constexpr StridedDiscreteDomain remove_last(discrete_vector_type) const
static KOKKOS_FUNCTION constexpr discrete_vector_type extents() noexcept
static KOKKOS_FUNCTION constexpr std::size_t rank()
KOKKOS_DEFAULTED_FUNCTION StridedDiscreteDomain(StridedDiscreteDomain &&x)=default
static KOKKOS_FUNCTION DiscreteVector distance_from_front(DiscreteElement<>) noexcept
KOKKOS_DEFAULTED_FUNCTION constexpr StridedDiscreteDomain()=default
KOKKOS_FUNCTION constexpr operator bool()
static KOKKOS_FUNCTION constexpr bool empty() noexcept
KOKKOS_DEFAULTED_FUNCTION StridedDiscreteDomain(StridedDiscreteDomain const &x)=default
KOKKOS_FUNCTION constexpr DiscreteElement operator()(DiscreteVector<> const &) const noexcept
static KOKKOS_FUNCTION constexpr discrete_element_type back() noexcept
KOKKOS_FUNCTION constexpr StridedDiscreteDomain(StridedDiscreteDomain< ODDims... > const &)
KOKKOS_DEFAULTED_FUNCTION ~StridedDiscreteDomain()=default
KOKKOS_DEFAULTED_FUNCTION StridedDiscreteDomain & operator=(StridedDiscreteDomain const &x)=default
KOKKOS_DEFAULTED_FUNCTION StridedDiscreteDomain & operator=(StridedDiscreteDomain const &x)=default
KOKKOS_FUNCTION constexpr discrete_vector_type extents() const noexcept
KOKKOS_FUNCTION constexpr operator bool()
KOKKOS_FUNCTION constexpr StridedDiscreteDomain take_first(discrete_vector_type n) const
KOKKOS_FUNCTION constexpr DiscreteVector< QueryDDim > extent() const noexcept
KOKKOS_FUNCTION constexpr discrete_element_type front() const noexcept
KOKKOS_FUNCTION bool contains(DElems const &... delems) const noexcept
KOKKOS_FUNCTION constexpr std::size_t size() const
KOKKOS_FUNCTION DiscreteVector< DDims... > distance_from_front(DElems const &... delems) const noexcept
KOKKOS_DEFAULTED_FUNCTION StridedDiscreteDomain(StridedDiscreteDomain &&x)=default
KOKKOS_FUNCTION constexpr discrete_vector_type strides() const noexcept
KOKKOS_DEFAULTED_FUNCTION StridedDiscreteDomain & operator=(StridedDiscreteDomain &&x)=default
KOKKOS_FUNCTION constexpr StridedDiscreteDomain remove(discrete_vector_type n1, discrete_vector_type n2) const
KOKKOS_FUNCTION constexpr StridedDiscreteDomain remove_first(discrete_vector_type n) const
KOKKOS_FUNCTION constexpr discrete_element_type back() const noexcept
KOKKOS_DEFAULTED_FUNCTION StridedDiscreteDomain()=default
KOKKOS_FUNCTION constexpr DiscreteElement< DDims... > operator()(DiscreteVector< DDims... > const &dvect) const noexcept
friend class StridedDiscreteDomain
KOKKOS_FUNCTION constexpr decltype(auto) operator[](std::size_t n)
KOKKOS_FUNCTION constexpr StridedDiscreteDomain remove_last(discrete_vector_type n) const
KOKKOS_FUNCTION constexpr StridedDiscreteDomain take_last(discrete_vector_type n) const
KOKKOS_DEFAULTED_FUNCTION ~StridedDiscreteDomain()=default
KOKKOS_FUNCTION constexpr decltype(auto) operator[](std::size_t n) const
KOKKOS_DEFAULTED_FUNCTION StridedDiscreteDomain(StridedDiscreteDomain const &x)=default
KOKKOS_FUNCTION constexpr bool operator==(StridedDiscreteDomain< ODims... > const &other) const
static KOKKOS_FUNCTION constexpr std::size_t rank()
KOKKOS_FUNCTION constexpr StridedDiscreteDomain(DDoms const &... domains)
Construct a StridedDiscreteDomain by copies and merge of domains.
KOKKOS_FUNCTION constexpr bool empty() const noexcept
KOKKOS_FUNCTION constexpr StridedDiscreteDomain(discrete_element_type const &element_begin, discrete_vector_type const &extents, discrete_vector_type const &strides)
Construct a StridedDiscreteDomain starting from element_begin with size points.
The top-level namespace of DDC.
constexpr bool is_non_uniform_point_sampling_v
KOKKOS_FUNCTION constexpr DiscreteElement< QueryDDims... > back(SparseDiscreteDomain< DDims... > const &domain) noexcept
KOKKOS_FUNCTION constexpr DiscreteElement< QueryDDims... > front(StridedDiscreteDomain< DDims... > const &domain) noexcept
KOKKOS_FUNCTION Coordinate< typename DDim::continuous_dimension_type > rlength(DiscreteDomain< DDim > const &d)
bool is_discrete_space_initialized() noexcept
KOKKOS_FUNCTION Coordinate< typename DDim::continuous_dimension_type > coordinate(DiscreteElement< DDim > const &c)
KOKKOS_FUNCTION Coordinate< typename DDim::continuous_dimension_type > distance_at_left(DiscreteElement< DDim > i)
KOKKOS_FUNCTION Coordinate< typename DDim::continuous_dimension_type > origin() noexcept
Lower bound index of the mesh.
KOKKOS_FUNCTION constexpr SparseDiscreteDomain< QueryDDims... > select(SparseDiscreteDomain< DDims... > const &domain)
KOKKOS_FUNCTION constexpr DiscreteVector< QueryDDims... > extents(StridedDiscreteDomain< DDims... > const &domain) noexcept
KOKKOS_FUNCTION Coordinate< typename DDim::continuous_dimension_type > rmin(DiscreteDomain< DDim > const &d)
KOKKOS_FUNCTION constexpr DiscreteElement< QueryDDims... > back(StridedDiscreteDomain< DDims... > const &domain) noexcept
KOKKOS_FUNCTION constexpr StridedDiscreteDomain< QueryDDims... > select(StridedDiscreteDomain< DDims... > const &domain)
KOKKOS_FUNCTION constexpr auto remove_dims_of(StridedDiscreteDomain< DDimsA... > const &DDom_a) noexcept
Remove the dimensions DDimsB from DDom_a.
KOKKOS_FUNCTION Coordinate< typename DDim::continuous_dimension_type > distance_at_right(DiscreteElement< DDim > i)
void init_discrete_space(Args &&... args)
Initialize (emplace) a global singleton discrete space.
KOKKOS_FUNCTION constexpr auto remove_dims_of(StridedDiscreteDomain< DDimsA... > const &DDom_a, StridedDiscreteDomain< DDimsB... > const &) noexcept
KOKKOS_FUNCTION constexpr auto remove_dims_of(SparseDiscreteDomain< DDimsA... > const &DDom_a, SparseDiscreteDomain< DDimsB... > const &) noexcept
detail::ddim_impl_t< DDim, Kokkos::HostSpace > const & host_discrete_space()
KOKKOS_FUNCTION constexpr DiscreteVector< QueryDDims... > extents(SparseDiscreteDomain< DDims... > const &domain) noexcept
KOKKOS_FUNCTION constexpr auto replace_dim_of(SparseDiscreteDomain< DDimsA... > const &DDom_a, SparseDiscreteDomain< DDimsB... > const &DDom_b) noexcept
KOKKOS_FUNCTION constexpr DiscreteElement< QueryDDims... > front(SparseDiscreteDomain< DDims... > const &domain) noexcept
constexpr bool is_strided_discrete_domain_v
KOKKOS_FUNCTION DiscreteVector< ODDims... > prod(DiscreteVector< ODDims... > const &lhs, DiscreteVector< ODDims... > const &rhs) noexcept
constexpr bool is_periodic_sampling_v
KOKKOS_FUNCTION Real step() noexcept
Spacing step of the mesh.
KOKKOS_FUNCTION constexpr auto replace_dim_of(StridedDiscreteDomain< DDimsA... > const &DDom_a, StridedDiscreteDomain< DDimsB... > const &DDom_b) noexcept
constexpr bool is_sparse_discrete_domain_v
KOKKOS_FUNCTION constexpr auto remove_dims_of(SparseDiscreteDomain< DDimsA... > const &DDom_a) noexcept
Remove the dimensions DDimsB from DDom_a.
KOKKOS_FUNCTION DiscreteElement< DDim > front() noexcept
Lower bound index of the mesh.
KOKKOS_FUNCTION detail::ddim_impl_t< DDim, MemorySpace > const & discrete_space()
Arg0 init_discrete_space(std::tuple< DDimImpl, Arg0 > &&a)
Move construct a global singleton discrete space and pass through the other argument.
std::tuple< Arg0, Arg1, Args... > init_discrete_space(std::tuple< DDimImpl, Arg0, Arg1, Args... > &&a)
Move construct a global singleton discrete space and pass through remaining arguments.
KOKKOS_FUNCTION Coordinate< typename DDim::continuous_dimension_type > rmax(DiscreteDomain< DDim > const &d)
friend KOKKOS_FUNCTION constexpr StridedDiscreteDomainIterator operator-(StridedDiscreteDomainIterator i, difference_type n)
KOKKOS_FUNCTION constexpr DiscreteElement< DDim > operator*() const noexcept
KOKKOS_FUNCTION constexpr StridedDiscreteDomainIterator & operator++()
friend KOKKOS_FUNCTION constexpr StridedDiscreteDomainIterator operator+(difference_type n, StridedDiscreteDomainIterator i)
KOKKOS_FUNCTION constexpr StridedDiscreteDomainIterator & operator-=(difference_type n)
KOKKOS_FUNCTION constexpr StridedDiscreteDomainIterator operator++(int)
friend KOKKOS_FUNCTION constexpr bool operator<(StridedDiscreteDomainIterator const &xx, StridedDiscreteDomainIterator const &yy)
KOKKOS_DEFAULTED_FUNCTION StridedDiscreteDomainIterator()=default
KOKKOS_FUNCTION constexpr StridedDiscreteDomainIterator operator--(int)
friend KOKKOS_FUNCTION constexpr bool operator==(StridedDiscreteDomainIterator const &xx, StridedDiscreteDomainIterator const &yy)
KOKKOS_FUNCTION constexpr StridedDiscreteDomainIterator(DiscreteElement< DDim > value, DiscreteVector< DDim > stride)
KOKKOS_FUNCTION constexpr StridedDiscreteDomainIterator & operator+=(difference_type n)
KOKKOS_FUNCTION constexpr DiscreteElement< DDim > operator[](difference_type n) const
friend KOKKOS_FUNCTION constexpr difference_type operator-(StridedDiscreteDomainIterator const &xx, StridedDiscreteDomainIterator const &yy)
KOKKOS_FUNCTION constexpr StridedDiscreteDomainIterator & operator--()
friend KOKKOS_FUNCTION constexpr bool operator>=(StridedDiscreteDomainIterator const &xx, StridedDiscreteDomainIterator const &yy)
friend KOKKOS_FUNCTION constexpr StridedDiscreteDomainIterator operator+(StridedDiscreteDomainIterator i, difference_type n)
friend KOKKOS_FUNCTION constexpr bool operator>(StridedDiscreteDomainIterator const &xx, StridedDiscreteDomainIterator const &yy)
friend KOKKOS_FUNCTION constexpr bool operator!=(StridedDiscreteDomainIterator const &xx, StridedDiscreteDomainIterator const &yy)
friend KOKKOS_FUNCTION constexpr bool operator<=(StridedDiscreteDomainIterator const &xx, StridedDiscreteDomainIterator const &yy)