24.02
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
w
Variables
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
w
Enumerations
a
b
c
d
e
f
g
j
l
m
n
o
p
q
r
s
t
u
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
~
Variables
c
d
e
f
i
j
l
m
o
p
r
s
v
w
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
Enumerations
Enumerator
Related Functions
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
l
m
o
r
s
t
u
v
x
z
Functions
a
b
c
g
i
m
r
s
t
v
z
Variables
Typedefs
Macros
a
c
d
e
f
h
i
l
o
s
t
u
v
x
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
PreluImpl.cpp
Go to the documentation of this file.
1
//
2
// Copyright © 2017 Arm Ltd. All rights reserved.
3
// SPDX-License-Identifier: MIT
4
//
5
6
#include "
PreluImpl.hpp
"
7
#include "
RefWorkloadUtils.hpp
"
8
#include "
Broadcast.hpp
"
9
10
namespace
armnn
11
{
12
13
void
PreluImpl
(
const
TensorInfo
& inputInfo,
14
const
TensorInfo
& alphaInfo,
15
const
TensorInfo
& outputInfo,
16
Decoder<float>
& inputData,
17
Decoder<float>
& alphaData,
18
Encoder<float>
& outputData)
19
{
20
const
TensorShape
& inputShape = inputInfo.
GetShape
();
21
const
TensorShape
& alphaShape = alphaInfo.
GetShape
();
22
const
TensorShape
& outputShape = outputInfo.
GetShape
();
23
24
// PReLU activation: f(x) = alpha * x for x < 0, f(x) = x for x >= 0
25
auto
prelu = [](
float
x,
float
alpha)
26
{
27
return
x < 0 ? alpha * x : x;
28
};
29
30
BroadcastLoop
(inputShape, alphaShape, outputShape).
Unroll
(prelu, 0, inputData, alphaData, outputData);
31
}
32
33
}
// namespace armnn
armnn::Decoder< float >
armnn::BroadcastLoop
Definition:
Broadcast.hpp:14
armnn::PreluImpl
void PreluImpl(const TensorInfo &inputInfo, const TensorInfo &alphaInfo, const TensorInfo &outputInfo, Decoder< float > &inputData, Decoder< float > &alphaData, Encoder< float > &outputData)
Definition:
PreluImpl.cpp:13
armnn::TensorInfo
Definition:
Tensor.hpp:152
PreluImpl.hpp
Broadcast.hpp
armnn::TensorShape
Definition:
Tensor.hpp:20
armnn::Encoder< float >
armnn::BroadcastLoop::Unroll
void Unroll(Func operationFunc, unsigned int dimension, DecoderOp &inData0, DecoderOp &inData1, EncoderOp &outData)
Definition:
Broadcast.hpp:26
RefWorkloadUtils.hpp
armnn::TensorInfo::GetShape
const TensorShape & GetShape() const
Definition:
Tensor.hpp:193
armnn
Copyright (c) 2021 ARM Limited and Contributors.
Definition:
01_00_quick_start.dox:6
src
backends
reference
workloads
PreluImpl.cpp
Generated on Wed Feb 14 2024 16:36:17 for Arm NN by
1.8.17