From 4a626a7d52e9c4759bdc16b65401a53779dd975f Mon Sep 17 00:00:00 2001 From: Pablo Tello Date: Wed, 4 Apr 2018 10:01:14 +0100 Subject: COMPMID-801: NHWC support in CLIm2Col. And extended tests coverage adding kernel shapes 3x1, 1x5 and 7x7 Change-Id: Ia7c1d4da2368d5f5fbc1a41187f4ac1aca5f150f Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/127727 Tested-by: Jenkins Reviewed-by: Gian Marco Iodice --- tests/CL/Helper.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tests/CL') diff --git a/tests/CL/Helper.h b/tests/CL/Helper.h index 30fbe568f4..32f9ca00e3 100644 --- a/tests/CL/Helper.h +++ b/tests/CL/Helper.h @@ -47,6 +47,15 @@ public: k->configure(std::forward(args)...); _kernel = std::move(k); } + /** Validate input arguments + * + * @param[in] args Configuration arguments. + */ + template + static Status validate(Args &&... args) + { + return K::validate(std::forward(args)...); + } }; /** As above but this also setups a Zero border on the input tensor of the specified bordersize */ -- cgit v1.2.1