1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
//@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 <cstdio>
#include <gtest/gtest.h>
#include <Kokkos_Core.hpp>
#include <type_traits>
#include <typeinfo>
namespace Test {
namespace {
template <typename ExecSpace>
struct TestViewCtorProp_EmbeddedDim {
using ViewIntType = typename Kokkos::View<int**, ExecSpace>;
using ViewDoubleType = typename Kokkos::View<double*, ExecSpace>;
// Cuda 7.0 has issues with using a lambda in parallel_for to initialize the
// view - replace with this functor
template <class ViewType>
struct Functor {
ViewType v;
Functor(const ViewType& v_) : v(v_) {}
KOKKOS_INLINE_FUNCTION
void operator()(const int i) const { v(i) = i; }
};
static void test_vcpt(const size_t N0, const size_t N1) {
// Create views to test
{
using VIT = typename TestViewCtorProp_EmbeddedDim::ViewIntType;
using VDT = typename TestViewCtorProp_EmbeddedDim::ViewDoubleType;
VIT vi1("vi1", N0, N1);
VDT vd1("vd1", N0);
// TEST: Test for common type between two views, one with type double,
// other with type int Deduce common value_type and construct a view with
// that type
{
// Two views
auto view_alloc_arg = Kokkos::common_view_alloc_prop(vi1, vd1);
using CommonViewValueType =
typename decltype(view_alloc_arg)::value_type;
using CVT = typename Kokkos::View<CommonViewValueType*, ExecSpace>;
using HostCVT = typename CVT::HostMirror;
// Construct View using the common type; for case of specialization, an
// 'embedded_dim' would be stored by view_alloc_arg
CVT cv1(Kokkos::view_alloc("cv1", view_alloc_arg), N0 * N1);
Kokkos::parallel_for(Kokkos::RangePolicy<ExecSpace>(0, N0 * N1),
Functor<CVT>(cv1));
HostCVT hcv1 = Kokkos::create_mirror_view(cv1);
Kokkos::deep_copy(hcv1, cv1);
ASSERT_EQ((std::is_same_v<CommonViewValueType, double>), true);
ASSERT_EQ((std::is_same_v<
typename decltype(view_alloc_arg)::scalar_array_type,
CommonViewValueType>),
true);
#if 0
// debug output
for ( int i = 0; i < N0*N1; ++i ) {
printf(" Output check: hcv1(%d) = %lf\n ", i, hcv1(i) );
}
printf( " Common value type view: %s \n", typeid( CVT() ).name() );
printf( " Common value type: %s \n", typeid( CommonViewValueType() ).name() );
if ( std::is_same_v< CommonViewValueType, double > == true ) {
printf("Proper common value_type\n");
}
else {
printf("WRONG common value_type\n");
}
// end debug output
#endif
}
{
// Single view
auto view_alloc_arg = Kokkos::common_view_alloc_prop(vi1);
using CommonViewValueType =
typename decltype(view_alloc_arg)::value_type;
using CVT = typename Kokkos::View<CommonViewValueType*, ExecSpace>;
using HostCVT = typename CVT::HostMirror;
// Construct View using the common type; for case of specialization, an
// 'embedded_dim' would be stored by view_alloc_arg
CVT cv1(Kokkos::view_alloc("cv1", view_alloc_arg), N0 * N1);
Kokkos::parallel_for(Kokkos::RangePolicy<ExecSpace>(0, N0 * N1),
Functor<CVT>(cv1));
HostCVT hcv1 = Kokkos::create_mirror_view(cv1);
Kokkos::deep_copy(hcv1, cv1);
ASSERT_EQ((std::is_same_v<CommonViewValueType, int>), true);
}
}
} // end test_vcpt
}; // end struct
} // namespace
TEST(TEST_CATEGORY, viewctorprop_embedded_dim) {
TestViewCtorProp_EmbeddedDim<TEST_EXECSPACE>::test_vcpt(2, 3);
}
TEST(TEST_CATEGORY,
viewctorpop_view_allocate_without_initializing_backward_compatility) {
using deprecated_view_alloc = Kokkos::ViewAllocateWithoutInitializing;
Kokkos::View<int**, TEST_EXECSPACE> v(deprecated_view_alloc("v"), 5, 7);
}
} // namespace Test
|