Imported Upstream version 1.18.0
[platform/core/ml/nnfw.git] / compiler / luci-interpreter / src / kernels / Square.test.cpp
1 /*
2  * Copyright (c) 2021 Samsung Electronics Co., Ltd. All Rights Reserved
3  * Copyright 2017 The TensorFlow Authors. All Rights Reserved.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *    http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #include "kernels/Square.h"
19 #include "kernels/TestUtils.h"
20 #include "luci_interpreter/TestMemoryManager.h"
21
22 namespace luci_interpreter
23 {
24 namespace kernels
25 {
26 namespace
27 {
28
29 using namespace testing;
30
31 TEST(SquareTest, Float)
32 {
33   std::unique_ptr<IMemoryManager> memory_manager = std::make_unique<TestMemoryManager>();
34
35   Shape input_shape{3, 1, 2};
36   std::vector<float> input_data1{1.0, 0.0, -1.0, 11.0, -2.0, -1.44};
37   Tensor input_tensor =
38     makeInputTensor<DataType::FLOAT32>(input_shape, input_data1, memory_manager.get());
39   Tensor output_tensor = makeOutputTensor(DataType::FLOAT32);
40
41   Square kernel(&input_tensor, &output_tensor);
42   kernel.configure();
43   memory_manager->allocate_memory(output_tensor);
44   kernel.execute();
45
46   std::vector<float> ref_output_data{1.0, 0.0, 1.0, 121.0, 4.0, 2.0736};
47   EXPECT_THAT(extractTensorData<float>(output_tensor), FloatArrayNear(ref_output_data));
48 }
49
50 } // namespace
51 } // namespace kernels
52 } // namespace luci_interpreter