aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/BatchNormImpl.hpp
blob: 32f63c3e68435da1421cc5e1584fdc2622418e3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include "Encoders.hpp"
#include "Decoders.hpp"

#include <armnn/backends/WorkloadData.hpp>

namespace armnn
{

void BatchNormImpl(const BatchNormalizationQueueDescriptor& data,
                   Decoder<float>& meanIn,
                   Decoder<float>& varIn,
                   Decoder<float>& betaIn,
                   Decoder<float>& gammaIn,
                   Decoder<float>& inputData,
                   Encoder<float>& outputData);

} // namespace armnn