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