//@HEADER // ************************************************************************ // // 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. // // Part of Kokkos, under the Apache License v2.0 with LLVM Exceptions. // See https://kokkos.org/LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //@HEADER #include #include #ifdef KOKKOS_ENABLE_IMPL_MDSPAN namespace { // Helper to make static tests more succinct template constexpr bool datatype_matches_extent = std::is_same_v< typename Kokkos::Impl::ExtentsFromDataType::type, Extent>; template constexpr bool extent_matches_datatype = std::is_same_v::type>; // Conversion from DataType to extents // 0-rank view static_assert(datatype_matches_extent>); // Only dynamic static_assert(datatype_matches_extent< double***, Kokkos::extents>); // Only static static_assert( datatype_matches_extent>); // Both dynamic and static static_assert(datatype_matches_extent< double* * [3][2][8], Kokkos::extents>); // Conversion from extents to DataType // 0-rank extents static_assert( extent_matches_datatype>); // only dynamic static_assert(extent_matches_datatype< double****, double, Kokkos::extents>); // only static static_assert(extent_matches_datatype>); // both dynamic and static static_assert( extent_matches_datatype>); } // namespace #endif // KOKKOS_ENABLE_IMPL_MDSPAN