Imported Upstream version 1.18.0
[platform/core/ml/nnfw.git] / compiler / luci-interpreter / pal / mcu / PALSoftmax.h
1 /*
2  * Copyright (c) 2021 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_PAL_SOFTMAX_H
18 #define LUCI_INTERPRETER_PAL_SOFTMAX_H
19
20 #include <tensorflow/lite/kernels/internal/reference/softmax.h>
21
22 namespace luci_interpreter_pal
23 {
24 static inline void PopulateSoftmaxLookupTable(tflite::SoftmaxParams *data, float input_scale,
25                                               float beta)
26 {
27   // Do nothing for mcu
28   (void)data;
29   (void)input_scale;
30   (void)beta;
31 }
32
33 static inline void InitializeParams(tflite::SoftmaxParams *params, float input_scale, float beta)
34 {
35   int32 input_beta_multiplier;
36   int input_beta_left_shift;
37   static const int kScaledDiffIntegerBits = 5;
38   tflite::PreprocessSoftmaxScaling(beta, input_scale, kScaledDiffIntegerBits,
39                                    &input_beta_multiplier, &input_beta_left_shift);
40
41   params->input_multiplier = input_beta_multiplier;
42   params->input_left_shift = input_beta_left_shift;
43   params->diff_min =
44     -tflite::CalculateInputRadius(kScaledDiffIntegerBits, params->input_left_shift);
45 }
46
47 template <typename T>
48 static inline void Softmax(const tflite::SoftmaxParams &params,
49                            const tflite::RuntimeShape &input_shape, const T *input_data,
50                            const tflite::RuntimeShape &output_shape, T *output_data)
51 {
52   // MARK: At this moment this operation doesn't support on mcu
53   assert(false && "Softmax NYI");
54   (void)params;
55   (void)input_shape;
56   (void)input_data;
57   (void)output_shape;
58   (void)output_data;
59 }
60 } // namespace luci_interpreter_pal
61
62 #endif // LUCI_INTERPRETER_PAL_SOFTMAX_H