Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / compiler / angkor / src / ADT / kernel / NHWCLayout.test.cpp
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *    http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "nncc/core/ADT/kernel/NHWCLayout.h"
18
19 #include <gtest/gtest.h>
20
21 using nncc::core::ADT::kernel::Shape;
22 using nncc::core::ADT::kernel::NHWCLayout;
23
24 TEST(ADT_KERNEL_KERNEL_NHWC_LAYOUT, ch_increment)
25 {
26   const uint32_t N = 4;
27   const uint32_t C = 3;
28   const uint32_t H = 6;
29   const uint32_t W = 5;
30
31   const Shape shape{N, C, H, W};
32   const NHWCLayout l;
33
34   ASSERT_EQ(l.offset(shape, 1, 2, 1, 1), l.offset(shape, 1, 1, 1, 1) + 1);
35 }
36
37 TEST(ADT_KERNEL_KERNEL_NHWC_LAYOUT, col_increment)
38 {
39   const uint32_t N = 4;
40   const uint32_t C = 3;
41   const uint32_t H = 6;
42   const uint32_t W = 5;
43
44   const Shape shape{N, C, H, W};
45   const NHWCLayout l;
46
47   ASSERT_EQ(l.offset(shape, 1, 1, 1, 2), l.offset(shape, 1, 1, 1, 1) + C);
48 }
49
50 TEST(ADT_KERNEL_KERNEL_NHWC_LAYOUT, row_increment)
51 {
52   const uint32_t N = 4;
53   const uint32_t C = 3;
54   const uint32_t H = 6;
55   const uint32_t W = 5;
56
57   const Shape shape{N, C, H, W};
58   const NHWCLayout l;
59
60   ASSERT_EQ(l.offset(shape, 1, 1, 2, 1), l.offset(shape, 1, 1, 1, 1) + C * W);
61 }
62
63 TEST(ADT_KERNEL_KERNEL_NHWC_LAYOUT, n_increment)
64 {
65   const uint32_t N = 4;
66   const uint32_t C = 3;
67   const uint32_t H = 6;
68   const uint32_t W = 5;
69
70   const Shape shape{N, C, H, W};
71   const NHWCLayout l;
72
73   ASSERT_EQ(l.offset(shape, 2, 1, 1, 1), l.offset(shape, 1, 1, 1, 1) + H * W * C);
74 }