File: test_xchunked_view.cpp

package info (click to toggle)
xtensor 0.25.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,476 kB
  • sloc: cpp: 65,302; makefile: 202; python: 171; javascript: 8
file content (63 lines) | stat: -rw-r--r-- 2,226 bytes parent folder | download
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
/***************************************************************************
 * Copyright (c) Johan Mabille, Sylvain Corlay and Wolf Vollprecht          *
 * Copyright (c) QuantStack                                                 *
 *                                                                          *
 * Distributed under the terms of the BSD 3-Clause License.                 *
 *                                                                          *
 * The full license is in the file LICENSE, distributed with this software. *
 ****************************************************************************/

#include "xtensor/xarray.hpp"
#include "xtensor/xchunked_array.hpp"
#include "xtensor/xchunked_view.hpp"

#include "test_common_macros.hpp"

namespace xt
{
    TEST(xchunked_view, iterate)
    {
        std::vector<std::size_t> shape = {3, 4};
        std::vector<std::size_t> chunk_shape = {1, 2};
        xarray<double> a(shape);
        std::size_t chunk_nb = 0;
        auto chunked_view = xchunked_view<xarray<double>>(a, chunk_shape);
        for (auto it = chunked_view.chunk_begin(); it != chunked_view.chunk_end(); it++)
        {
            chunk_nb++;
        }

        std::size_t expected_chunk_nb = (shape[0] / chunk_shape[0]) * (shape[1] / chunk_shape[1]);

        EXPECT_EQ(chunk_nb, expected_chunk_nb);
    }

    TEST(xchunked_view, assign)
    {
        std::vector<std::size_t> shape = {3, 4};
        std::vector<std::size_t> chunk_shape = {1, 2};
        xarray<double> a(shape);
        std::vector<double> data = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
        std::copy(data.cbegin(), data.cend(), a.begin());
        xarray<double> b(shape);

        as_chunked(b, chunk_shape) = a;

        EXPECT_EQ(a, b);
    }

    TEST(xchunked_view, assign_chunked_array)
    {
        std::vector<std::size_t> shape = {10, 10, 10};
        std::vector<std::size_t> chunk_shape = {2, 3, 4};
        auto a = chunked_array<double>(shape, chunk_shape);
        xarray<double> b(shape);
        auto ref = arange(0, 1000).reshape(shape);

        as_chunked(a, chunk_shape) = ref;
        as_chunked(b, chunk_shape) = a;

        EXPECT_EQ(ref, a);
        EXPECT_EQ(ref, b);
    }
}