aboutsummaryrefslogtreecommitdiff
path: root/src/armnnCaffeParser/CaffeParser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnCaffeParser/CaffeParser.cpp')
-rw-r--r--src/armnnCaffeParser/CaffeParser.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/armnnCaffeParser/CaffeParser.cpp b/src/armnnCaffeParser/CaffeParser.cpp
index 5218e1b856..3f61650f8b 100644
--- a/src/armnnCaffeParser/CaffeParser.cpp
+++ b/src/armnnCaffeParser/CaffeParser.cpp
@@ -774,10 +774,6 @@ void CaffeParserBase::ParseConvLayer(const LayerParameter& layerParam)
unsigned int padW = GET_OPTIONAL_WITH_VECTOR_FALLBACK(convParam, ConvolutionParameter,
pad_w, pad, unsigned int, 0u);
- VALIDATE_EQUAL_VALUES_IN_RANGE(kernelH, kernelW, 0, 11);
- VALIDATE_EQUAL_VALUES_IN_RANGE(strideH, strideW, 0, 11);
- VALIDATE_EQUAL_VALUES_IN_RANGE(padH, padW, 0, 11);
-
Convolution2dDescriptor convolution2dDescriptor;
convolution2dDescriptor.m_PadLeft = padW;
convolution2dDescriptor.m_PadRight = padW;