Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / ops / ReverseLayer.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 "ReverseLayer.h"
18
19 #include "OperationUtils.h"
20
21 #include <cker/operation/Reverse.h>
22
23 namespace onert
24 {
25 namespace backend
26 {
27 namespace cpu
28 {
29 namespace ops
30 {
31
32 void ReverseLayer::run()
33 {
34
35   if (_axis->total_size() != 4)
36   {
37     throw std::runtime_error{"Reverse: only support 1 axis"};
38   }
39   int32_t axis = *getBuffer<int32_t>(_axis);
40   if (axis < 0)
41   {
42     axis += _input->getShape().rank();
43   }
44
45   switch (_input->data_type())
46   {
47     case OperandType::FLOAT32:
48       nnfw::cker::Reverse<float>(axis, getShape(_input), getBuffer<float>(_input),
49                                  getShape(_output), getBuffer<float>(_output));
50       break;
51     default:
52       throw std::runtime_error{"Reverse: unsupported data type"};
53   }
54 }
55
56 void ReverseLayer::configure(const IPortableTensor *input, const IPortableTensor *axis,
57                              IPortableTensor *output)
58 {
59   _input = input;
60   _axis = axis;
61   _output = output;
62 }
63
64 } // namespace ops
65 } // namespace cpu
66 } // namespace backend
67 } // namespace onert