Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / ops / ZerosLikeLayer.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 "ZerosLikeLayer.h"
18
19 #include "OperationUtils.h"
20
21 namespace onert
22 {
23 namespace backend
24 {
25 namespace cpu
26 {
27 namespace ops
28 {
29 ZerosLikeLayer::ZerosLikeLayer() : _input(nullptr), _output(nullptr)
30 {
31   // DO NOTHING
32 }
33
34 void ZerosLikeLayer::configure(const IPortableTensor *input, IPortableTensor *output)
35 {
36   _input = input;
37   _output = output;
38 }
39
40 void ZerosLikeLayer::run()
41 {
42   if (!HaveSameShapes(_input, _output))
43     throw std::runtime_error{"ZerosLike: input and output shape don't match."};
44
45   auto element_size = getTensorShape(_input).FlatSize();
46
47   switch (_input->data_type())
48   {
49     case OperandType::FLOAT32:
50       memset(reinterpret_cast<float *>(_output->buffer()), 0, element_size * sizeof(float));
51       break;
52     case OperandType::INT32:
53       memset(reinterpret_cast<int32_t *>(_output->buffer()), 0, element_size * sizeof(int32_t));
54       break;
55     default:
56       throw std::runtime_error{"ZerosLike: unsupported data type"};
57   }
58 }
59
60 } // namespace ops
61 } // namespace cpu
62 } // namespace backend
63 } // namespace onert