// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "Decoders.hpp" #include "Encoders.hpp" #include #include namespace armnn { void TransposeConvolution2dImpl(const TransposeConvolution2dDescriptor& descriptor, const TensorShape& inputShape, Decoder& inputDecoder, const TensorShape& outputShape, Encoder& outputEncoder, const TensorShape& weightsShape, Decoder& weightsDecoder, Decoder* biasesDecoder); } // namespace armnn