// // Copyright © 2020 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include #include #include "ClBaseWorkload.hpp" #include #include "arm_compute/graph/Tensor.h" #include "arm_compute/runtime/CL/functions/CLQLSTMLayer.h" namespace armnn { class ClQLstmWorkload : public ClBaseWorkload { public: ClQLstmWorkload(const QLstmQueueDescriptor& descriptor, const WorkloadInfo& info, const arm_compute::CLCompileContext& clCompileContext); virtual void Execute() const override; private: mutable arm_compute::CLQLSTMLayer m_QLstmLayer; std::unique_ptr m_InputToInputWeightsTensor; std::unique_ptr m_InputToForgetWeightsTensor; std::unique_ptr m_InputToCellWeightsTensor; std::unique_ptr m_InputToOutputWeightsTensor; std::unique_ptr m_RecurrentToInputWeightsTensor; std::unique_ptr m_RecurrentToForgetWeightsTensor; std::unique_ptr m_RecurrentToCellWeightsTensor; std::unique_ptr m_RecurrentToOutputWeightsTensor; std::unique_ptr m_CellToInputWeightsTensor; std::unique_ptr m_CellToForgetWeightsTensor; std::unique_ptr m_CellToOutputWeightsTensor; std::unique_ptr m_InputGateBiasTensor; std::unique_ptr m_ForgetGateBiasTensor; std::unique_ptr m_CellBiasTensor; std::unique_ptr m_OutputGateBiasTensor; std::unique_ptr m_ProjectionWeightsTensor; std::unique_ptr m_ProjectionBiasTensor; std::unique_ptr m_InputLayerNormWeightsTensor; std::unique_ptr m_ForgetLayerNormWeightsTensor; std::unique_ptr m_CellLayerNormWeightsTensor; std::unique_ptr m_OutputLayerNormWeightsTensor; void FreeUnusedTensors(); }; arm_compute::Status ClQLstmWorkloadValidate(const TensorInfo& input, const TensorInfo& cellStateIn, const TensorInfo& outputStateIn, const TensorInfo& cellStateOut, const TensorInfo& outputStateOut, const TensorInfo& output, const QLstmDescriptor& descriptor, const LstmInputParamsInfo& paramsInfo); } //namespace armnn