From 45198c8fe5c262cf7fba6f22cfc03ccf194e8bca Mon Sep 17 00:00:00 2001 From: Sheri Zhang Date: Tue, 14 Apr 2020 22:29:36 +0100 Subject: COMPMID-3239: Implement QSYMM16 LayerNormalizationKernel for CL Use NE/CLSynthetizeFunction instead of NE/CLQLSTMLayerNormalizationValidationFixture Signed-off-by: Sheri Zhang Change-Id: I62ace213a5261f2d307da6953d0521492aa05292 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3019 Reviewed-by: Michele Di Giorgio Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins --- tests/NEON/Helper.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tests/NEON/Helper.h') diff --git a/tests/NEON/Helper.h b/tests/NEON/Helper.h index a56b4adc34..18e400d542 100644 --- a/tests/NEON/Helper.h +++ b/tests/NEON/Helper.h @@ -66,6 +66,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