From cdf51455df8835e9e3bfd3e31ed389146af9a573 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Thu, 31 Aug 2017 14:21:36 +0100 Subject: COMPMID-515: L2 Pooling for FP32/FP16 in CL. Change-Id: I43641fa672f5905ca62edd1f63fc93e0cf7ea382 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/85963 Tested-by: Kaizen Reviewed-by: Gian Marco Iodice --- scripts/clang-tidy.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'scripts') diff --git a/scripts/clang-tidy.h b/scripts/clang-tidy.h index 2c932ca3a4..318b85ed58 100644 --- a/scripts/clang-tidy.h +++ b/scripts/clang-tidy.h @@ -1,6 +1,11 @@ #include //FIXME: Remove this file before the release +inline float16x4_t vrsqrts_f16 (float16x4_t, float16x4_t) +{ + return vdup_n_f16(0); +} + inline float16x8_t vrsqrtsq_f16 (float16x8_t, float16x8_t) { return vdupq_n_f16(0); @@ -121,6 +126,11 @@ inline float16x4_t vbsl_f16 (uint16x4_t,float16x4_t, float16x4_t) return vdup_n_f16(0); } +inline float16x4_t vrsqrte_f16(float16x4_t) +{ + return vdup_n_f16(0); +} + inline float16x8_t vrsqrteq_f16(float16x8_t) { return vdupq_n_f16(0); @@ -131,11 +141,21 @@ inline float16x8_t vfmsq_f16 (float16x8_t, float16x8_t, float16x8_t) return vdupq_n_f16(0); } +inline float16x4_t vrecpe_f16 (float16x4_t) +{ + return vdup_n_f16(0); +} + inline float16x8_t vrecpeq_f16 (float16x8_t) { return vdupq_n_f16(0); } +inline float16x4_t vrecps_f16 (float16x4_t, float16x4_t) +{ + return vdup_n_f16(0); +} + inline float16x8_t vrecpsq_f16 (float16x8_t, float16x8_t) { return vdupq_n_f16(0); -- cgit v1.2.1