Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / ops / SpaceToDepthLayer.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 "SpaceToDepthLayer.h"
18
19 #include "OperationUtils.h"
20
21 #include <cker/operation/SpaceToDepth.h>
22
23 namespace onert
24 {
25 namespace backend
26 {
27 namespace cpu
28 {
29 namespace ops
30 {
31 SpaceToDepthLayer::SpaceToDepthLayer() : _input(nullptr), _block_size(0), _output(nullptr)
32 {
33   // DO NOTHING
34 }
35
36 template <typename T> void SpaceToDepthLayer::spaceToDepth()
37 {
38
39   nnfw::cker::SpaceToDepthParams params;
40   params.block_size = _block_size;
41
42   nnfw::cker::SpaceToDepth(params, getShape(_input), getBuffer<T>(_input), getShape(_output),
43                            getBuffer<T>(_output));
44 }
45
46 void SpaceToDepthLayer::configure(const IPortableTensor *input, const int32_t block_size,
47                                   IPortableTensor *output)
48 {
49   _input = input;
50   _block_size = block_size;
51   _output = output;
52 }
53
54 void SpaceToDepthLayer::run()
55 {
56   if (_input->data_type() == OperandType::FLOAT32)
57   {
58     spaceToDepth<float>();
59   }
60   else if (_input->data_type() == OperandType::QUANT_UINT8_ASYMM)
61   {
62     spaceToDepth<uint8_t>();
63   }
64   else
65   {
66     throw std::runtime_error{"SpaceToDepth: unsupported data type"};
67   }
68 }
69
70 } // namespace ops
71 } // namespace cpu
72 } // namespace backend
73 } // namespace onert