Imported Upstream version 1.9.0
[platform/core/ml/nnfw.git] / compiler / luci-interpreter / src / kernels / LeakyRelu.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/LeakyRelu.h"
18
19 #include "kernels/Utils.h"
20
21 #include <tensorflow/lite/kernels/internal/reference/reference_ops.h>
22 #include <tensorflow/lite/kernels/internal/optimized/optimized_ops.h>
23
24 #include <stdexcept>
25
26 namespace luci_interpreter
27 {
28
29 namespace kernels
30 {
31
32 LeakyRelu::LeakyRelu(const Tensor *input, Tensor *output, const LeakyReluParams &params)
33     : KernelWithParams<LeakyReluParams>({input}, {output}, params)
34 {
35 }
36
37 void LeakyRelu::configure()
38 {
39   assert(input()->element_type() == output()->element_type());
40   if (input()->element_type() == DataType::U8)
41   {
42     double alpha_multiplier = input()->scale() * params().alpha / output()->scale();
43     quantizeMultiplier(alpha_multiplier, &_output_multiplier_alpha, &_output_shift_alpha);
44     double identity_multiplier = input()->scale() / output()->scale();
45     quantizeMultiplier(identity_multiplier, &_output_multiplier_identity, &_output_shift_identity);
46   }
47   output()->resize(input()->shape());
48 }
49
50 void LeakyRelu::execute() const
51 {
52   switch (input()->element_type())
53   {
54     case DataType::FLOAT32:
55       evalFloat();
56       break;
57     case DataType::U8:
58       evalQuantized();
59       break;
60     default:
61       throw std::runtime_error("Unsupported type.");
62   }
63 }
64
65 void LeakyRelu::evalFloat() const
66 {
67   tflite::LeakyReluParams op_params{};
68   op_params.alpha = params().alpha;
69   tflite::optimized_ops::LeakyRelu(op_params, getTensorShape(input()),
70                                    getTensorData<float>(input()), getTensorShape(output()),
71                                    getTensorData<float>(output()));
72 }
73
74 void LeakyRelu::evalQuantized() const
75 {
76   tflite::LeakyReluParams op_params{};
77   op_params.input_offset = input()->zero_point();
78   op_params.output_offset = output()->zero_point();
79   op_params.output_multiplier_alpha = _output_multiplier_alpha;
80   op_params.output_shift_alpha = _output_shift_alpha;
81   op_params.output_multiplier_identity = _output_multiplier_identity;
82   op_params.output_shift_identity = _output_shift_identity;
83
84   tflite::reference_ops::QuantizeLeakyRelu(
85       op_params, getTensorShape(input()), getTensorData<uint8_t>(input()), getTensorShape(output()),
86       getTensorData<uint8_t>(output()));
87 }
88
89 } // namespace kernels
90 } // namespace luci_interpreter