From 7784c837afd5844fb6dc4d166ff253d983abfd2d Mon Sep 17 00:00:00 2001 From: Abe Mbise Date: Thu, 31 May 2018 16:48:41 +0100 Subject: COMPMID-1167: Validation for NEDepthwiseConvolutionLayer Change-Id: I9689e1a0627dc015dd2ce98417e4c97bb55581bb Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/131327 Reviewed-by: Anthony Barbier Tested-by: Jenkins --- arm_compute/core/NEON/kernels/NEDepthwiseVectorToTensorKernel.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'arm_compute/core/NEON/kernels/NEDepthwiseVectorToTensorKernel.h') diff --git a/arm_compute/core/NEON/kernels/NEDepthwiseVectorToTensorKernel.h b/arm_compute/core/NEON/kernels/NEDepthwiseVectorToTensorKernel.h index 458cbd7812..00977a91b4 100644 --- a/arm_compute/core/NEON/kernels/NEDepthwiseVectorToTensorKernel.h +++ b/arm_compute/core/NEON/kernels/NEDepthwiseVectorToTensorKernel.h @@ -62,6 +62,14 @@ public: * @param[in] conv_h The converted tensor's height. */ void configure(const ITensor *input, ITensor *output, size_t conv_w, size_t conv_h); + /** Static function to check if given info will lead to a valid configuration of @ref NEDepthwiseVectorToTensorKernel + * + * @param[in] input The input vector to convert. Data type supported: QASYMM8/S32/F32. + * @param[in] output The output tensor. 3 lower dimensions represent a single input [width, height, IFM]. Data type supported: same as @p input. + * @param[in] conv_w The converted tensor's width. + * @param[in] conv_h The converted tensor's height. + */ + static Status validate(const ITensorInfo *input, const ITensorInfo *output, size_t conv_w, size_t conv_h); // Inherited methods overridden: void run(const Window &window, const ThreadInfo &info) override; -- cgit v1.2.1