aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/BackendHelper.cpp
diff options
context:
space:
mode:
authorKeith Davis <keith.davis@arm.com>2022-11-18 14:38:04 +0000
committerTeresaARM <teresa.charlinreyes@arm.com>2022-11-22 15:29:19 +0000
commit975a6a2f896eb2e5457f6ffa528f7fb018fd2927 (patch)
tree401af2ddfdd4faee481f3e71918dd9f51b7651d6 /src/armnn/BackendHelper.cpp
parent839b9329611ecc148d6547920cec7b105fc5660f (diff)
downloadarmnn-975a6a2f896eb2e5457f6ffa528f7fb018fd2927.tar.gz
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 <keith.davis@arm.com> Change-Id: Ic0a729ea31402f0b39724da47212ae5cc04465c4
Diffstat (limited to 'src/armnn/BackendHelper.cpp')
-rw-r--r--src/armnn/BackendHelper.cpp26
1 files changed, 0 insertions, 26 deletions
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<TensorInfo>& hiddenStateOutput,
- const Optional<TensorInfo>& cellStateOutput,
- const LstmDescriptor& descriptor,
- const LstmInputParamsInfo& paramsInfo,
- Optional<std::string&> 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,