blob: f20f327b386aa4f9546adaac4beee9b567df92a6 [file] [log] [blame]
Aron Virginas-Tar735a4502019-06-26 15:02:47 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include "Decoders.hpp"
9#include "Encoders.hpp"
10
11#include <armnn/Descriptors.hpp>
12#include <armnn/Tensor.hpp>
13
14namespace armnn
15{
16
17void TransposeConvolution2dImpl(const TransposeConvolution2dDescriptor& descriptor,
18 const TensorShape& inputShape,
19 Decoder<float>& inputDecoder,
20 const TensorShape& outputShape,
21 Encoder<float>& outputEncoder,
22 const TensorShape& weightsShape,
23 Decoder<float>& weightsDecoder,
24 Decoder<float>* biasesDecoder);
25
26} // namespace armnn