aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohamed Nour Abouelseoud <mohamednour.abouelseoud@arm.com>2018-10-24 11:48:14 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-10-25 09:49:58 +0100
commit53e9947b99e555e3a4ed28f4b0291b3a9199f29e (patch)
treecd861247e1e0911861b8bc810d6d7cae713cfd4d
parent79141b9662547eeefb3ad533637223de40726e12 (diff)
downloadarmnn-53e9947b99e555e3a4ed28f4b0291b3a9199f29e.tar.gz
IVGCVSW-1007 Support Inception-V3 and V4 in CaffeParser
Removed the kernel dimension/range validation from CaffeParser Change-Id: I9e63c01fecbaea1448aa203e7212cd4aac854c3d
-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;