aboutsummaryrefslogtreecommitdiff
path: root/src/graph/backends/CL/CLNodeValidator.cpp
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2018-09-26 13:56:51 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:55:19 +0000
commit4bb17337e8330d01e469dfcb42220fe56b85a59f (patch)
tree7dddc48164c187bf5a44d08adef8015e68160683 /src/graph/backends/CL/CLNodeValidator.cpp
parentfe4b05fdefdd866c5ffec4637f63ce5de047c5f1 (diff)
downloadComputeLibrary-4bb17337e8330d01e469dfcb42220fe56b85a59f.tar.gz
COMPMID-1603: Add PadLayer to graph API
Change-Id: Ic985ac8b0b09c3a6b3f2d43274af8ce89f8c90dd Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/150313 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: bsgcomp <bsgcomp@arm.com>
Diffstat (limited to 'src/graph/backends/CL/CLNodeValidator.cpp')
-rw-r--r--src/graph/backends/CL/CLNodeValidator.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/graph/backends/CL/CLNodeValidator.cpp b/src/graph/backends/CL/CLNodeValidator.cpp
index a91efce6e4..5f6fa0ad41 100644
--- a/src/graph/backends/CL/CLNodeValidator.cpp
+++ b/src/graph/backends/CL/CLNodeValidator.cpp
@@ -59,6 +59,8 @@ Status CLNodeValidator::validate(INode *node)
CLDepthwiseConvolutionLayer3x3>(*polymorphic_downcast<DepthwiseConvolutionLayerNode *>(node));
case NodeType::NormalizePlanarYUVLayer:
return detail::validate_normalize_planar_yuv_layer<CLNormalizePlanarYUVLayer>(*polymorphic_downcast<NormalizePlanarYUVLayerNode *>(node));
+ case NodeType::PadLayer:
+ return detail::validate_pad_layer<CLPadLayer>(*polymorphic_downcast<PadLayerNode *>(node));
case NodeType::PermuteLayer:
return detail::validate_permute_layer<CLPermute>(*polymorphic_downcast<PermuteLayerNode *>(node));
case NodeType::ReorgLayer: