Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / ops / SquaredDiffLayer.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 "SquaredDiffLayer.h"
18
19 #include "OperationUtils.h"
20
21 #include <cker/operation/SqDiff.h>
22
23 namespace onert
24 {
25 namespace backend
26 {
27 namespace cpu
28 {
29 namespace ops
30 {
31
32 SqDiffLayer::SqDiffLayer() : _input1(nullptr), _input2(nullptr), _output(nullptr)
33 {
34   // DO NOTHING
35 }
36
37 void SqDiffLayer::SqDiffFloat32()
38 {
39   nnfw::cker::SqDiff(getShape(_input1), getBuffer<float>(_input1), getShape(_input2),
40                      getBuffer<float>(_input2), getShape(_output), getBuffer<float>(_output));
41 }
42
43 void SqDiffLayer::configure(const IPortableTensor *input1, const IPortableTensor *input2,
44                             IPortableTensor *output)
45 {
46   _input1 = input1;
47   _input2 = input2;
48   _output = output;
49 }
50
51 void SqDiffLayer::run()
52 {
53   if (_input1->data_type() == OperandType::FLOAT32)
54   {
55     SqDiffFloat32();
56   }
57   else
58   {
59     throw std::runtime_error{"SquaredDiff: unsupported data type"};
60   }
61 }
62 } // namespace ops
63 } // namespace cpu
64 } // namespace backend
65 } // namespace onert