aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/Descriptors.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/Descriptors.cpp')
-rw-r--r--src/armnn/Descriptors.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/armnn/Descriptors.cpp b/src/armnn/Descriptors.cpp
index 226d121edc..a1419cfbf7 100644
--- a/src/armnn/Descriptors.cpp
+++ b/src/armnn/Descriptors.cpp
@@ -455,24 +455,6 @@ uint32_t DepthwiseConvolution2dDescriptor::GetNumInputs() const
return armnn::GetNumInputs(m_BiasEnabled);
}
-std::pair<std::pair<unsigned int, unsigned int>, std::pair<unsigned int, unsigned int>>
-BatchMatMulDescriptor::GetAxesToMul(
- const BatchMatMulDescriptor& desc,
- const TensorShape& tensorXShape,
- const TensorShape& tensorYShape)
-{
- return { GetAxesToMul(desc.m_DataLayoutX, tensorXShape),
- GetAxesToMul(desc.m_DataLayoutY, tensorYShape) };
-}
-std::pair<std::vector<unsigned int>, std::vector<unsigned int>> BatchMatMulDescriptor::GetAxesNotMul(
- const BatchMatMulDescriptor& desc,
- const TensorShape& inputXShape,
- const TensorShape& inputYShape)
-{
- return { GetAxesNotMul(desc.m_DataLayoutX, inputXShape),
- GetAxesNotMul(desc.m_DataLayoutY, inputYShape) };
-}
-
std::pair<unsigned int, unsigned int> BatchMatMulDescriptor::GetAxesToMul(
DataLayout dataLayout,
const TensorShape& tensorShape)