Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / onert-micro / luci-interpreter / include / luci_interpreter / test_models / add_n / TestDataAddNBase.h
1 /*
2  * Copyright (c) 2023 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 #ifndef LUCI_INTERPRETER_TEST_MODELS_ADD_N_KERNEL_BASE_H
18 #define LUCI_INTERPRETER_TEST_MODELS_ADD_N_KERNEL_BASE_H
19
20 #include "luci_interpreter/test_models/TestDataBase.h"
21
22 namespace luci_interpreter
23 {
24 namespace test_kernel
25 {
26
27 template <typename T> class TestDataAddNBase : public TestDataBase<T>
28 {
29 public:
30   TestDataAddNBase() = default;
31
32   const unsigned char *get_model_ptr() override final { return _test_kernel_model_circle; }
33
34   const std::vector<T> &get_input_data_by_index(int i) override final
35   {
36     switch (i)
37     {
38       case 0:
39         return _input1_data;
40       case 1:
41         return _input2_data;
42       case 2:
43         return _input3_data;
44       default:
45         assert(false && "Wrong input index");
46     }
47   }
48
49   const std::vector<T> &get_output_data_by_index(int i) override final
50   {
51     assert(i == 0);
52     return _reference_output_data;
53   }
54
55 protected:
56   std::vector<T> _input1_data;
57   std::vector<T> _input2_data;
58   std::vector<T> _input3_data;
59   std::vector<T> _reference_output_data;
60   const unsigned char *_test_kernel_model_circle;
61 };
62
63 } // namespace test_kernel
64 } // namespace luci_interpreter
65
66 #endif // LUCI_INTERPRETER_TEST_MODELS_ADD_N_KERNEL_BASE_H