// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "Decoders.hpp" #include "Encoders.hpp" #include #include namespace armnn { class RefTransposeConvolution2dWorkload : public BaseWorkload { public: RefTransposeConvolution2dWorkload(const TransposeConvolution2dQueueDescriptor& descriptor, const WorkloadInfo& info); ~RefTransposeConvolution2dWorkload() = default; void PostAllocationConfigure() override; void Execute() const override; private: std::unique_ptr m_Weights; std::unique_ptr m_Biases; std::unique_ptr> m_InputDecoder; std::unique_ptr> m_OutputEncoder; std::unique_ptr> m_WeightsDecoder; std::unique_ptr> m_BiasesDecoder; TensorShape m_InputShape; TensorShape m_OutputShape; TensorShape m_WeightsShape; }; } // namespace armnn