Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / ops / RangeLayer.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 "RangeLayer.h"
18
19 #include "OperationUtils.h"
20
21 #include <cker/operation/Range.h>
22
23 namespace onert
24 {
25 namespace backend
26 {
27 namespace cpu
28 {
29 namespace ops
30 {
31 RangeLayer::RangeLayer() : _start(nullptr), _limit(nullptr), _delta(nullptr), _output(nullptr)
32 {
33   // DO NOTHING
34 }
35
36 void RangeLayer::configure(const IPortableTensor *start, const IPortableTensor *limit,
37                            const IPortableTensor *delta, IPortableTensor *output)
38 {
39   _start = start;
40   _limit = limit;
41   _delta = delta;
42   _output = output;
43 }
44
45 void RangeLayer::run()
46 {
47   switch (_output->data_type())
48   {
49     case OperandType::FLOAT32:
50       nnfw::cker::Range<float>(reinterpret_cast<float *>(_start->buffer()),
51                                reinterpret_cast<float *>(_limit->buffer()),
52                                reinterpret_cast<float *>(_delta->buffer()),
53                                reinterpret_cast<float *>(_output->buffer()));
54       break;
55     case OperandType::INT32:
56       nnfw::cker::Range<int32_t>(reinterpret_cast<int32_t *>(_start->buffer()),
57                                  reinterpret_cast<int32_t *>(_limit->buffer()),
58                                  reinterpret_cast<int32_t *>(_delta->buffer()),
59                                  reinterpret_cast<int32_t *>(_output->buffer()));
60       break;
61     default:
62       throw std::runtime_error{"Range: unsupported data type"};
63       break;
64   }
65 }
66
67 } // namespace ops
68 } // namespace cpu
69 } // namespace backend
70 } // namespace onert