fe93b67f0bb44c675dfe74d7d1e058425b76d616
[platform/core/ml/nnfw.git] / onert-micro / luci-interpreter / pal / linux / PALAveragePool2d.h
1 /*
2  * Copyright (c) 2021 Samsung Electronics Co., Ltd. All Rights Reserved
3  * Copyright 2019 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 #ifndef LUCI_INTERPRETER_PAL_AVERAGEPOOL2D_H
19 #define LUCI_INTERPRETER_PAL_AVERAGEPOOL2D_H
20
21 #include <tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h>
22 #include <tensorflow/lite/kernels/internal/reference/pooling.h>
23
24 namespace luci_interpreter_pal
25 {
26 template <typename T>
27 static inline void AveragePool(const tflite::PoolParams &params,
28                                const tflite::RuntimeShape &input_shape, const T *input_data,
29                                const tflite::RuntimeShape &output_shape, T *output_data,
30                                const tflite::RuntimeShape &scratchpad_shape, T *scratchpad_data)
31 {
32   {
33     // MARK: At this moment this operation doesn't support
34     assert(false && "AveragePool NYI");
35     (void)params;
36     (void)input_shape;
37     (void)input_data;
38     (void)output_shape;
39     (void)output_data;
40     (void)scratchpad_shape;
41     (void)scratchpad_data;
42   }
43 }
44
45 template <>
46 inline void AveragePool<int8_t>(const tflite::PoolParams &params,
47                                 const tflite::RuntimeShape &input_shape, const int8_t *input_data,
48                                 const tflite::RuntimeShape &output_shape, int8_t *output_data,
49                                 const tflite::RuntimeShape &scratchpad_shape,
50                                 int8_t *scratchpad_data)
51 {
52   (void)scratchpad_shape;
53   (void)scratchpad_data;
54
55   tflite::reference_integer_ops::AveragePool(params, input_shape, input_data, output_shape,
56                                              output_data);
57 }
58
59 static inline void SetupScratchpadTensor(luci_interpreter::Tensor *scratchpad,
60                                          const luci_interpreter::DataType &input_data_type,
61                                          const tflite::RuntimeShape &input_shape,
62                                          const tflite::RuntimeShape &output_shape)
63
64 {
65   (void)input_data_type;
66   (void)input_shape;
67   (void)output_shape;
68
69   scratchpad->set_allocatable(false);
70 }
71
72 } // namespace luci_interpreter_pal
73
74 #endif // LUCI_INTERPRETER_PAL_AVERAGEPOOL2D_H