ONE - On-device Neural Engine
Loading...
Searching...
No Matches
Rsqrt.cpp
Go to the documentation of this file.
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 "kernels/Rsqrt.h"
18#include "kernels/Utils.h"
19
20#include <stdexcept>
21#include <cmath>
22
23namespace luci_interpreter
24{
25
26namespace kernels
27{
28
29Rsqrt::Rsqrt(const Tensor *input, Tensor *output) : Kernel({input}, {output}) {}
30
32{
33 if (input()->element_type() != output()->element_type())
34 {
35 throw std::runtime_error("Input/output tensor data type mismatch.");
36 }
37 output()->resize(input()->shape());
38}
39
40void Rsqrt::execute() const
41{
42 switch (input()->element_type())
43 {
44 case DataType::FLOAT32:
45 evalFloat();
46 break;
47
48 default:
49 throw std::runtime_error("luci-intp Rsqrt Unsupported type.");
50 }
51}
52
53void Rsqrt::evalFloat() const
54{
55 auto in = getTensorData<float>(input());
56 auto out = getTensorData<float>(output());
57 auto size = getTensorShape(input()).FlatSize();
58 for (auto i = in; i != in + size; ++i)
59 {
60 *out = 1.f / std::sqrt(*i);
61 ++out;
62 }
63}
64
65} // namespace kernels
66} // namespace luci_interpreter
void resize(const Shape &new_shape)
Definition Tensor.cpp:56
void execute() const override
Definition Rsqrt.cpp:40
Tensor * output() const
Definition Rsqrt.h:34
Rsqrt(const Tensor *input, Tensor *output)
Definition Rsqrt.cpp:29
const Tensor * input() const
Definition Rsqrt.h:33
tflite::RuntimeShape getTensorShape(const Tensor *tensor)
Definition Utils.h:194
int32_t size[5]
Definition Slice.cpp:35