From 975a6a2f896eb2e5457f6ffa528f7fb018fd2927 Mon Sep 17 00:00:00 2001 From: Keith Davis Date: Fri, 18 Nov 2022 14:38:04 +0000 Subject: IVGCVSW-7080 Remove deprecated code due to be removed in 23.02 * Extended deprecation time of SubgraphView interface to 23.08 Signed-off-by: Keith Davis Change-Id: Ic0a729ea31402f0b39724da47212ae5cc04465c4 --- src/armnn/BackendHelper.cpp | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'src/armnn') diff --git a/src/armnn/BackendHelper.cpp b/src/armnn/BackendHelper.cpp index ff899d49ea..d2048df15d 100644 --- a/src/armnn/BackendHelper.cpp +++ b/src/armnn/BackendHelper.cpp @@ -1405,32 +1405,6 @@ bool LayerSupportHandle::IsTransposeSupported(const TensorInfo& input, reasonIfUnsupported); } -// Forwarding function to maintain ABI stability -bool LayerSupportHandle::IsUnidirectionalSequenceLstmSupported(const TensorInfo& input, - const TensorInfo& outputStateIn, - const TensorInfo& cellStateIn, - const TensorInfo& output, - const Optional& hiddenStateOutput, - const Optional& cellStateOutput, - const LstmDescriptor& descriptor, - const LstmInputParamsInfo& paramsInfo, - Optional reasonIfUnsupported) -{ - TensorInfo hiddenStateOutputVal = hiddenStateOutput.has_value() ? hiddenStateOutput.value() : TensorInfo(); - TensorInfo cellStateOutputVal = cellStateOutput.has_value() ? cellStateOutput.value() : TensorInfo(); - TensorInfos infos{input, outputStateIn, cellStateIn, hiddenStateOutputVal, cellStateOutputVal, output}; - - return IsUnidirectionalSequenceLstmSupported(input, - outputStateIn, - cellStateIn, - hiddenStateOutputVal, - cellStateOutputVal, - output, - descriptor, - paramsInfo, - reasonIfUnsupported); -} - bool LayerSupportHandle::IsUnidirectionalSequenceLstmSupported(const TensorInfo& input, const TensorInfo& outputStateIn, const TensorInfo& cellStateIn, -- cgit v1.2.1