Imported Upstream version 1.4.0
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / kernel / ReshapeLayer.cc
1 /*
2  * Copyright (c) 2018 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 "ReshapeLayer.h"
18
19 namespace onert
20 {
21 namespace backend
22 {
23 namespace cpu
24 {
25 namespace kernel
26 {
27
28 ReshapeLayer::ReshapeLayer() : _input(nullptr), _shape(nullptr), _output(nullptr)
29 {
30   // DO NOTHING
31 }
32
33 void ReshapeLayer::reshapeGeneric()
34 {
35   // TODO use _shape to calculate shape of output when _shape is not nullptr && not constant
36
37   size_t count = _input->total_size();
38   memcpy(_output->buffer(), _input->buffer(), count);
39 }
40
41 void ReshapeLayer::configure(const operand::Tensor *input, const operand::Tensor *shape,
42                              operand::Tensor *output)
43 {
44   _input = input;
45   /* note : shape is optional. If not provided from model, _shape is nullptr. */
46   _shape = shape;
47   _output = output;
48 }
49
50 void ReshapeLayer::run() { reshapeGeneric(); }
51
52 } // namespace kernel
53 } // namespace cpu
54 } // namespace backend
55 } // namespace onert