Imported Upstream version 1.18.0
[platform/core/ml/nnfw.git] / compiler / luci-interpreter / src / kernels / Logistic.cpp
1 /*
2  * Copyright (c) 2020 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 "kernels/Logistic.h"
18
19 #include "kernels/Utils.h"
20
21 #include <tensorflow/lite/kernels/internal/reference/logistic.h>
22
23 namespace luci_interpreter
24 {
25 namespace kernels
26 {
27
28 Logistic::Logistic(const Tensor *input, Tensor *output) : Kernel({input}, {output}) {}
29
30 void Logistic::configure()
31 {
32   LUCI_INTERPRETER_CHECK(input()->element_type() == output()->element_type());
33   if (input()->element_type() == DataType::U8)
34   {
35     LUCI_INTERPRETER_CHECK(output()->scale() == 1. / 256);
36     populateLookupTable();
37   }
38   output()->resize(input()->shape());
39 }
40
41 void Logistic::execute() const
42 {
43   switch (input()->element_type())
44   {
45     case DataType::FLOAT32:
46       evalFloat();
47       break;
48     case DataType::U8:
49       evalQuantized();
50       break;
51     default:
52       throw std::runtime_error("Unsupported type.");
53   }
54 }
55
56 void Logistic::evalFloat() const
57 {
58   tflite::reference_ops::Logistic(getTensorShape(input()), getTensorData<float>(input()),
59                                   getTensorShape(output()), getTensorData<float>(output()));
60 }
61
62 void Logistic::evalQuantized() const
63 {
64   const int size = tflite::MatchingFlatSize(getTensorShape(input()), getTensorShape(output()));
65   uint8_t *output_data = getTensorData<uint8_t>(output());
66   const uint8_t *input_data = getTensorData<uint8_t>(input());
67   for (int i = 0; i < size; ++i)
68   {
69     output_data[i] = getTableValue(input_data[i]);
70   }
71 }
72
73 void Logistic::populateLookupTable()
74 {
75   const auto input_scale = static_cast<double>(input()->scale());
76   const auto input_zero_point = static_cast<int32_t>(input()->zero_point());
77   const auto output_scale = static_cast<double>(output()->scale());
78   const auto output_zero_point = static_cast<int32_t>(output()->zero_point());
79   const float inverse_scale = 1 / output_scale;
80   int32_t maxval = std::numeric_limits<uint8_t>::max();
81   int32_t minval = std::numeric_limits<uint8_t>::min();
82   for (int32_t val = minval; val <= maxval; ++val)
83   {
84     const float dequantized = input_scale * (val - input_zero_point);
85     const float transformed = 1.0f / (1.0f + std::exp(-dequantized));
86     const float rescaled = std::round(transformed * inverse_scale);
87     const int32_t quantized = static_cast<int32_t>(rescaled + output_zero_point);
88     setTableValue(static_cast<uint8_t>(std::max(std::min(maxval, quantized), minval)),
89                   static_cast<uint8_t>(val));
90   }
91 }
92
93 } // namespace kernels
94 } // namespace luci_interpreter