Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / ops / PadLayer.cc
1 /*
2  * Copyright (c) 2019 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 "PadLayer.h"
18
19 #include <cker/operation/Pad.h>
20
21 namespace onert
22 {
23 namespace backend
24 {
25 namespace cpu
26 {
27 namespace ops
28 {
29
30 PadLayer::PadLayer()
31   : _input(nullptr), _output(nullptr), _padData(), _padRank(), _constantValueData()
32 {
33   // DO NOTHING
34 }
35
36 template <typename T> void PadLayer::padImpl(const T *constant_value_data)
37 {
38   nnfw::cker::Pad<T>(_padData, _padRank, getShape(_input), getBuffer<T>(_input), getShape(_output),
39                      getBuffer<T>(_output), constant_value_data);
40 }
41
42 void PadLayer::configure(const IPortableTensor *input, IPortableTensor *output,
43                          const int32_t *padData, int32_t padRank, const void *constantValueData)
44 {
45   _input = input;
46   _output = output;
47   memcpy(_padData, padData, sizeof(_padData));
48   _padRank = padRank;
49   _constantValueData.v = constantValueData;
50 }
51
52 void PadLayer::run()
53 {
54   switch (_input->data_type())
55   {
56     case OperandType::FLOAT32:
57       padImpl<float>(_constantValueData.f);
58       break;
59     case OperandType::QUANT_UINT8_ASYMM:
60       if (_constantValueData.u8 == nullptr)
61       {
62         uint8_t pad_value = static_cast<uint8_t>(_output->data_zero_point());
63         padImpl<uint8_t>(&pad_value);
64       }
65       else
66       {
67         padImpl<uint8_t>(_constantValueData.u8);
68       }
69       break;
70     case OperandType::QUANT_INT8_ASYMM:
71       if (_constantValueData.i8 == nullptr)
72       {
73         int8_t pad_value = static_cast<int8_t>(_output->data_zero_point());
74         padImpl<int8_t>(&pad_value);
75       }
76       else
77       {
78         padImpl<int8_t>(_constantValueData.i8);
79       }
80       break;
81     default:
82       throw std::runtime_error{"Pad: unsupported data type"};
83   }
84 }
85
86 } // namespace ops
87 } // namespace cpu
88 } // namespace backend
89 } // namespace onert