Imported Upstream version 1.8.0
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / ops / ReLU6Layer.cc
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 "ReLU6Layer.h"
18
19 #include "OperationUtils.h"
20
21 #include <cker/operation/ReLU6.h>
22
23 namespace onert
24 {
25 namespace backend
26 {
27 namespace cpu
28 {
29 namespace ops
30 {
31
32 ReLU6Layer::ReLU6Layer() : _input(nullptr), _output(nullptr)
33 {
34   // DO NOTHING
35 }
36
37 void ReLU6Layer::relu6Float32()
38 {
39   nnfw::cker::ReLU6(getTensorShape(_input), reinterpret_cast<const float *>(_input->buffer()),
40                     reinterpret_cast<float *>(_output->buffer()));
41 }
42
43 void ReLU6Layer::relu6Quant8()
44 {
45   // cker quant8 relu is not implemented yet
46   throw std::runtime_error{"NYI"};
47 }
48
49 void ReLU6Layer::configure(const IPortableTensor *input, IPortableTensor *output)
50 {
51   _input = input;
52   _output = output;
53 }
54
55 void ReLU6Layer::run()
56 {
57   if (_input->data_type() == OperandType::FLOAT32)
58   {
59     relu6Float32();
60   }
61   else if (_input->data_type() == OperandType::QUANT_UINT8_ASYMM)
62   {
63     relu6Quant8();
64   }
65   else
66   {
67     throw std::runtime_error{"ReLU6: unsupported data type"};
68   }
69 }
70
71 } // namespace ops
72 } // namespace cpu
73 } // namespace backend
74 } // namespace onert