From cfa2bba98169cb5ab1945462514be1b6badf7d98 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Thu, 27 Jun 2019 17:00:52 +0100 Subject: COMPMID-2178: Update GEMM assembly code. Perform offset reduction and requantization within the assembly wrapper. Change-Id: I5d5b3e1f6f9ef4c71805362c57f88ff199c027a3 Signed-off-by: Georgios Pinitas Reviewed-on: https://review.mlplatform.org/c/1541 Comments-Addressed: Pablo Marquez Reviewed-by: Gian Marco Iodice Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- src/core/NEON/kernels/arm_gemm/gemm_int16.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/core/NEON/kernels/arm_gemm/gemm_int16.cpp') diff --git a/src/core/NEON/kernels/arm_gemm/gemm_int16.cpp b/src/core/NEON/kernels/arm_gemm/gemm_int16.cpp index 0db0654f81..8062c3092a 100644 --- a/src/core/NEON/kernels/arm_gemm/gemm_int16.cpp +++ b/src/core/NEON/kernels/arm_gemm/gemm_int16.cpp @@ -55,11 +55,10 @@ const GemmImplementation *gemm_implementation_list gemm(const GemmArgs &args); -template KernelDescription get_gemm_method(const GemmArgs &args); -template bool method_is_compatible(GemmMethod method, const GemmArgs &args); -template std::vector get_compatible_kernels (const GemmArgs &args); +template UniqueGemmCommon gemm(const GemmArgs &args, const Nothing &); +template KernelDescription get_gemm_method(const GemmArgs &args, const Nothing &); +template std::vector get_compatible_kernels (const GemmArgs &args, const Nothing &); } // namespace arm_gemm -#endif // __aarch64__ \ No newline at end of file +#endif // __aarch64__ -- cgit v1.2.1