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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
|
//@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 <gtest/gtest.h>
#include <vector>
#define KOKKOS_IMPL_DO_NOT_WARN_INCLUDE_STATIC_CRS_GRAPH
#include <Kokkos_StaticCrsGraph.hpp>
#undef KOKKOS_IMPL_DO_NOT_WARN_INCLUDE_STATIC_CRS_GRAPH
#include <Kokkos_Core.hpp>
/*--------------------------------------------------------------------------*/
namespace Test {
namespace TestStaticCrsGraph {
template <class Space>
void run_test_graph() {
using dView = Kokkos::StaticCrsGraph<unsigned, Space>;
using hView = typename dView::HostMirror;
const unsigned LENGTH = 1000;
std::vector<std::vector<int> > graph(LENGTH);
for (size_t i = 0; i < LENGTH; ++i) {
graph[i].reserve(8);
for (size_t j = 0; j < 8; ++j) {
graph[i].push_back(i + j * 3);
}
}
{
dView d1;
ASSERT_FALSE(d1.is_allocated());
d1 = Kokkos::create_staticcrsgraph<dView>("d1", graph);
dView d2(d1);
dView d3(d1.entries, d1.row_map);
ASSERT_TRUE(d1.is_allocated());
ASSERT_TRUE(d2.is_allocated());
ASSERT_TRUE(d3.is_allocated());
}
dView dx;
hView hx;
dx = Kokkos::create_staticcrsgraph<dView>("dx", graph);
hx = Kokkos::create_mirror(dx);
ASSERT_EQ(hx.row_map.extent(0) - 1, LENGTH);
for (size_t i = 0; i < LENGTH; ++i) {
const size_t begin = hx.row_map[i];
const size_t n = hx.row_map[i + 1] - begin;
ASSERT_EQ(n, graph[i].size());
for (size_t j = 0; j < n; ++j) {
ASSERT_EQ((int)hx.entries(j + begin), graph[i][j]);
}
}
// Test row view access
for (size_t i = 0; i < LENGTH; ++i) {
auto rowView = hx.rowConst(i);
ASSERT_EQ(rowView.length, graph[i].size());
for (size_t j = 0; j < rowView.length; ++j) {
ASSERT_EQ(rowView.colidx(j), (size_t)graph[i][j]);
ASSERT_EQ(rowView(j), (size_t)graph[i][j]);
}
}
}
template <class Space>
void run_test_graph2() {
using dView = Kokkos::StaticCrsGraph<unsigned[3], Space>;
using hView = typename dView::HostMirror;
const unsigned LENGTH = 10;
std::vector<size_t> sizes(LENGTH);
size_t total_length = 0;
for (size_t i = 0; i < LENGTH; ++i) {
total_length += (sizes[i] = 6 + i % 4);
}
dView dx = Kokkos::create_staticcrsgraph<dView>("test", sizes);
hView hx = Kokkos::create_mirror(dx);
hView mx = Kokkos::create_mirror(dx);
ASSERT_EQ((size_t)dx.row_map.extent(0), (size_t)LENGTH + 1);
ASSERT_EQ((size_t)hx.row_map.extent(0), (size_t)LENGTH + 1);
ASSERT_EQ((size_t)mx.row_map.extent(0), (size_t)LENGTH + 1);
ASSERT_EQ((size_t)dx.entries.extent(0), (size_t)total_length);
ASSERT_EQ((size_t)hx.entries.extent(0), (size_t)total_length);
ASSERT_EQ((size_t)mx.entries.extent(0), (size_t)total_length);
ASSERT_EQ((size_t)dx.entries.extent(1), (size_t)3);
ASSERT_EQ((size_t)hx.entries.extent(1), (size_t)3);
ASSERT_EQ((size_t)mx.entries.extent(1), (size_t)3);
for (size_t i = 0; i < LENGTH; ++i) {
const size_t entry_begin = hx.row_map[i];
const size_t entry_end = hx.row_map[i + 1];
for (size_t j = entry_begin; j < entry_end; ++j) {
hx.entries(j, 0) = j + 1;
hx.entries(j, 1) = j + 2;
hx.entries(j, 2) = j + 3;
}
}
Kokkos::deep_copy(dx.entries, hx.entries);
Kokkos::deep_copy(mx.entries, dx.entries);
ASSERT_EQ(mx.row_map.extent(0), (size_t)LENGTH + 1);
for (size_t i = 0; i < LENGTH; ++i) {
const size_t entry_begin = mx.row_map[i];
const size_t entry_end = mx.row_map[i + 1];
ASSERT_EQ((entry_end - entry_begin), sizes[i]);
for (size_t j = entry_begin; j < entry_end; ++j) {
ASSERT_EQ((size_t)mx.entries(j, 0), (j + 1));
ASSERT_EQ((size_t)mx.entries(j, 1), (j + 2));
ASSERT_EQ((size_t)mx.entries(j, 2), (j + 3));
}
}
}
template <class Space>
void run_test_graph3(size_t B, size_t N) {
srand(10310);
using dView = Kokkos::StaticCrsGraph<int, Space>;
using hView = typename dView::HostMirror;
const unsigned LENGTH = 2000;
std::vector<size_t> sizes(LENGTH);
for (size_t i = 0; i < LENGTH; ++i) {
sizes[i] = rand() % 1000;
}
sizes[1] = N;
sizes[1998] = N;
int C = 0;
dView dx = Kokkos::create_staticcrsgraph<dView>("test", sizes);
dx.create_block_partitioning(B, C);
hView hx = Kokkos::create_mirror(dx);
for (size_t i = 0; i < B; i++) {
size_t ne = 0;
for (auto j = hx.row_block_offsets(i); j < hx.row_block_offsets(i + 1); j++)
ne += hx.row_map(j + 1) - hx.row_map(j) + C;
ASSERT_FALSE(
(ne > 2 * ((hx.row_map(hx.numRows()) + C * hx.numRows()) / B)) &&
(hx.row_block_offsets(i + 1) > hx.row_block_offsets(i) + 1));
}
}
template <class Space>
void run_test_graph4() {
using ordinal_type = unsigned int;
using layout_type = Kokkos::LayoutRight;
using space_type = Space;
using memory_traits_type = Kokkos::MemoryUnmanaged;
using dView = Kokkos::StaticCrsGraph<ordinal_type, layout_type, space_type,
memory_traits_type>;
using hView = typename dView::HostMirror;
dView dx;
// StaticCrsGraph with Unmanaged trait will contain row_map and entries
// members with the Unmanaged memory trait. Use of such a StaticCrsGraph
// requires an allocaton of memory for the unmanaged views to wrap.
//
// In this test, a graph (via raw arrays) resides on the host.
// The pointers are wrapped by unmanaged Views.
// To make use of this on the device, managed device Views are created
// (allocation required), and data from the unmanaged host views is deep
// copied to the device Views Unmanaged views of the appropriate type wrap the
// device data and are assigned to their corresponding unmanaged view members
// of the unmanaged StaticCrsGraph
// Data types for raw pointers storing StaticCrsGraph info
using ptr_row_map_type = typename dView::size_type;
using ptr_entries_type = typename dView::data_type;
const ordinal_type numRows = 8;
const ordinal_type nnz = 24;
ptr_row_map_type ptrRaw[] = {0, 4, 8, 10, 12, 14, 16, 20, 24};
ptr_entries_type indRaw[] = {0, 1, 4, 5, 0, 1, 4, 5, 2, 3, 2, 3,
4, 5, 4, 5, 2, 3, 6, 7, 2, 3, 6, 7};
// Wrap pointers in unmanaged host views
using local_row_map_type = typename hView::row_map_type;
using local_entries_type = typename hView::entries_type;
local_row_map_type unman_row_map(&(ptrRaw[0]), numRows + 1);
local_entries_type unman_entries(&(indRaw[0]), nnz);
hView hx;
hx = hView(unman_entries, unman_row_map);
// Create the device Views for copying the host arrays into
// An allocation is needed on the device for the unmanaged StaticCrsGraph to
// wrap the pointer
using d_row_map_view_type =
typename Kokkos::View<ptr_row_map_type*, layout_type, space_type>;
using d_entries_view_type =
typename Kokkos::View<ptr_entries_type*, layout_type, space_type>;
d_row_map_view_type tmp_row_map("tmp_row_map", numRows + 1);
d_entries_view_type tmp_entries("tmp_entries", nnz);
Kokkos::deep_copy(tmp_row_map, unman_row_map);
Kokkos::deep_copy(tmp_entries, unman_entries);
// Wrap the pointer in unmanaged View and assign to the corresponding
// StaticCrsGraph member
dx.row_map = typename dView::row_map_type(tmp_row_map.data(), numRows + 1);
dx.entries = typename dView::entries_type(tmp_entries.data(), nnz);
ASSERT_TRUE((std::is_same_v<typename dView::row_map_type::memory_traits,
Kokkos::MemoryUnmanaged>));
ASSERT_TRUE((std::is_same_v<typename dView::entries_type::memory_traits,
Kokkos::MemoryUnmanaged>));
ASSERT_TRUE((std::is_same_v<typename hView::row_map_type::memory_traits,
Kokkos::MemoryUnmanaged>));
ASSERT_TRUE((std::is_same_v<typename hView::entries_type::memory_traits,
Kokkos::MemoryUnmanaged>));
}
} /* namespace TestStaticCrsGraph */
TEST(TEST_CATEGORY, staticcrsgraph) {
TestStaticCrsGraph::run_test_graph<TEST_EXECSPACE>();
TestStaticCrsGraph::run_test_graph2<TEST_EXECSPACE>();
TestStaticCrsGraph::run_test_graph3<TEST_EXECSPACE>(1, 0);
TestStaticCrsGraph::run_test_graph3<TEST_EXECSPACE>(1, 1000);
TestStaticCrsGraph::run_test_graph3<TEST_EXECSPACE>(1, 10000);
TestStaticCrsGraph::run_test_graph3<TEST_EXECSPACE>(1, 100000);
TestStaticCrsGraph::run_test_graph3<TEST_EXECSPACE>(3, 0);
TestStaticCrsGraph::run_test_graph3<TEST_EXECSPACE>(3, 1000);
TestStaticCrsGraph::run_test_graph3<TEST_EXECSPACE>(3, 10000);
TestStaticCrsGraph::run_test_graph3<TEST_EXECSPACE>(3, 100000);
TestStaticCrsGraph::run_test_graph3<TEST_EXECSPACE>(75, 0);
TestStaticCrsGraph::run_test_graph3<TEST_EXECSPACE>(75, 1000);
TestStaticCrsGraph::run_test_graph3<TEST_EXECSPACE>(75, 10000);
TestStaticCrsGraph::run_test_graph3<TEST_EXECSPACE>(75, 100000);
TestStaticCrsGraph::run_test_graph4<TEST_EXECSPACE>();
}
} // namespace Test
|