aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/Convolution2dLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/Convolution2dLayer.cpp')
-rw-r--r--src/armnn/layers/Convolution2dLayer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/armnn/layers/Convolution2dLayer.cpp b/src/armnn/layers/Convolution2dLayer.cpp
index d4b67cca3f..9228ad721c 100644
--- a/src/armnn/layers/Convolution2dLayer.cpp
+++ b/src/armnn/layers/Convolution2dLayer.cpp
@@ -83,7 +83,7 @@ void Convolution2dLayer::ValidateTensorShapesFromInputs()
// check if we m_Weight data is not nullptr
BOOST_ASSERT_MSG(m_Weight != nullptr, "Convolution2dLayer: Weights data should not be null.");
- auto inferredShapes = InferOutputShapes({
+ /*auto inferredShapes = InferOutputShapes({
GetInputSlot(0).GetConnection()->GetTensorInfo().GetShape(),
m_Weight->GetTensorInfo().GetShape() });
@@ -92,7 +92,7 @@ void Convolution2dLayer::ValidateTensorShapesFromInputs()
ConditionalThrowIfNotEqual<LayerValidationException>(
"Convolution2dLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.",
GetOutputSlot(0).GetTensorInfo().GetShape(),
- inferredShapes[0]);
+ inferredShapes[0]);*/
}
Layer::ConstantTensors Convolution2dLayer::GetConstantTensorsByRef()