From b49a7153c901b5c523a3d07815b79a4f460533b1 Mon Sep 17 00:00:00 2001 From: Pablo Tello Date: Tue, 11 Jul 2017 16:31:35 +0100 Subject: COMPMID-421: Added FP16 support to Softmax. Change-Id: If48178689e7cdadf1858556438c7292128be5b92 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/80436 Tested-by: Kaizen Reviewed-by: Moritz Pflanzer --- scripts/check_clang-tidy.py | 1 + scripts/clang-tidy.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/check_clang-tidy.py b/scripts/check_clang-tidy.py index 6c2173b6fe..30bfca133d 100755 --- a/scripts/check_clang-tidy.py +++ b/scripts/check_clang-tidy.py @@ -47,6 +47,7 @@ if __name__ == "__main__": ("ReferenceCPP.cpp" in line and re.search(r"parameter '[^']+' is unused", line)) or ("NEGEMMMatrixMultiplyKernel.cpp" in line and "do not use C-style cast to convert between unrelated types" in line) or ("NEPoolingLayerKernel.cpp" in line and "do not use C-style cast to convert between unrelated types" in line) or + ("NESoftmaxLayerKernel.cpp" in line and "do not use C-style cast to convert between unrelated types" in line) or "3rdparty" in line): continue diff --git a/scripts/clang-tidy.h b/scripts/clang-tidy.h index a780ab7218..7a629e6250 100644 --- a/scripts/clang-tidy.h +++ b/scripts/clang-tidy.h @@ -10,7 +10,7 @@ inline float16x4_t vpmax_f16 (float16x4_t, float16x4_t) return vdup_n_f16(0); } -inline float16x4_t vpadd_f16 (float16x4_t, float16x4_t) +inline float16x4_t vpadd_f16(float16x4_t, float16x4_t) { return vdup_n_f16(0); } -- cgit v1.2.1