aboutsummaryrefslogtreecommitdiff
path: root/tests/CL
diff options
context:
space:
mode:
authorPablo Tello <pablo.tello@arm.com>2018-04-04 10:01:14 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:52:54 +0000
commit4a626a7d52e9c4759bdc16b65401a53779dd975f (patch)
tree82e203118f42f9b3c2e538c9b54d779f2a75d3af /tests/CL
parente083771a1f28c34485f0d0054e2645070df98846 (diff)
downloadComputeLibrary-4a626a7d52e9c4759bdc16b65401a53779dd975f.tar.gz
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 <bsgcomp@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com>
Diffstat (limited to 'tests/CL')
-rw-r--r--tests/CL/Helper.h9
1 files changed, 9 insertions, 0 deletions
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>(args)...);
_kernel = std::move(k);
}
+ /** Validate input arguments
+ *
+ * @param[in] args Configuration arguments.
+ */
+ template <typename... Args>
+ static Status validate(Args &&... args)
+ {
+ return K::validate(std::forward<Args>(args)...);
+ }
};
/** As above but this also setups a Zero border on the input tensor of the specified bordersize */