From 221f38176b0d4dbc212441779d9bbac3cc0eecfa Mon Sep 17 00:00:00 2001 From: Pablo Tello Date: Wed, 28 Jun 2017 17:27:56 +0100 Subject: COMPMID-421: Fixed FP16 support in Neon GEMM. Fixed GEMM FP16 problem with matrices that are not multiple of 32. Added a new test suite NEON/GEMM/Float16/SmallGEMM. Implemented FP16 function to multiply vector by a matrix. Change-Id: Ie6c692885a48d0206bd6fe748332fa83bc286d67 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/79118 Tested-by: Kaizen Reviewed-by: Moritz Pflanzer --- scripts/clang-tidy.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'scripts/clang-tidy.h') diff --git a/scripts/clang-tidy.h b/scripts/clang-tidy.h index 32b0f6955e..cbc0d07cd6 100644 --- a/scripts/clang-tidy.h +++ b/scripts/clang-tidy.h @@ -1,5 +1,30 @@ #include +inline float16x8_t vmulq_lane_f16 (float16x8_t, float16x4_t, const int) +{ + return vdupq_n_f16(0); +} + +inline float16x4_t vmul_f16 (float16x4_t, float16x4_t) +{ + return vdup_n_u16(0); +} + +inline float16x4_t vadd_f16 (float16x4_t, float16x4_t) +{ + return vdup_n_u16(0); +} + +inline float16x4_t vmul_lane_f16 (float16x4_t, float16x4_t, const int) +{ + return vdup_n_u16(0); +} + +inline float16x4_t vmul_n_f16 (float16x4_t, float16_t) +{ + return vdup_n_u16(0); +} + inline float16x8_t vcvtq_f16_u16(uint16x8_t) { return vdupq_n_f16(0); -- cgit v1.2.1