ONE - On-device Neural Engine
Loading...
Searching...
No Matches
InstanceNorm.h
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
#ifndef LUCI_INTERPRETER_KERNELS_INSTANCENORM_H
18
#define LUCI_INTERPRETER_KERNELS_INSTANCENORM_H
19
20
#include "
core/Kernel.h
"
21
#include "
core/KernelParams.h
"
22
23
namespace
luci_interpreter
24
{
25
namespace
kernels
26
{
27
28
class
InstanceNorm
:
public
KernelWithParams<InstanceNormParams>
29
{
30
public
:
31
InstanceNorm
(
const
Tensor
*
input
,
const
Tensor
*
gamma
,
const
Tensor
*
beta
,
Tensor
*
output
,
32
const
InstanceNormParams
&
params
);
33
34
const
Tensor
*
input
()
const
{
return
_inputs
[0]; }
35
const
Tensor
*
gamma
()
const
{
return
_inputs
[1]; }
36
const
Tensor
*
beta
()
const
{
return
_inputs
[2]; }
37
Tensor
*
output
()
const
{
return
_outputs
[0]; }
38
39
void
configure
()
override
;
40
void
execute
()
const override
;
41
42
private
:
43
void
evalFloat()
const
;
44
};
45
46
}
// namespace kernels
47
}
// namespace luci_interpreter
48
49
#endif
// LUCI_INTERPRETER_KERNELS_INSTANCENORM_H
Kernel.h
KernelParams.h
luci_interpreter::Kernel::_inputs
const std::vector< const Tensor * > _inputs
Definition
Kernel.h:52
luci_interpreter::Kernel::_outputs
const std::vector< Tensor * > _outputs
Definition
Kernel.h:53
luci_interpreter::KernelWithParams< InstanceNormParams >::params
const InstanceNormParams & params() const
Definition
Kernel.h:67
luci_interpreter::Tensor
Definition
Tensor.h:101
luci_interpreter::kernels::InstanceNorm::execute
void execute() const override
luci_interpreter::kernels::InstanceNorm::beta
const Tensor * beta() const
Definition
InstanceNorm.h:36
luci_interpreter::kernels::InstanceNorm::input
const Tensor * input() const
Definition
InstanceNorm.h:34
luci_interpreter::kernels::InstanceNorm::configure
void configure() override
luci_interpreter::kernels::InstanceNorm::gamma
const Tensor * gamma() const
Definition
InstanceNorm.h:35
luci_interpreter::kernels::InstanceNorm::output
Tensor * output() const
Definition
InstanceNorm.h:37
luci_interpreter::kernels::InstanceNorm::InstanceNorm
InstanceNorm(const Tensor *input, const Tensor *gamma, const Tensor *beta, Tensor *output, const InstanceNormParams ¶ms)
luci_interpreter
Definition
BuddyMemoryManager.h:22
nnfw::cker::InstanceNorm
void InstanceNorm(const InstanceNormParams ¶ms, const Shape &input_shape, const float *input_data, const Shape &gamma_shape, const float *gamma_data, const Shape &beta_shape, const float *beta_data, const Shape &output_shape, float *output_data)
Definition
InstanceNorm.h:31
luci_interpreter::InstanceNormParams
Definition
KernelParams.h:122
onert-micro
luci-interpreter
src
kernels
InstanceNorm.h
Generated by
1.9.8