From c0b6f76561580414f08633a804fc548ccad65659 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Mon, 2 Nov 2020 01:37:17 +0000 Subject: COMPMID-3776: Indirect GEMM Signed-off-by: Georgios Pinitas Change-Id: I51a1b0f098bc3a8c408c50c92221e4df3061e12c Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4343 Tested-by: Arm Jenkins Reviewed-by: Sang-Hoon Park Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- src/core/NEON/kernels/arm_gemm/quantized.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/core/NEON/kernels/arm_gemm/quantized.hpp') diff --git a/src/core/NEON/kernels/arm_gemm/quantized.hpp b/src/core/NEON/kernels/arm_gemm/quantized.hpp index b0e0c3b580..3f3443025c 100644 --- a/src/core/NEON/kernels/arm_gemm/quantized.hpp +++ b/src/core/NEON/kernels/arm_gemm/quantized.hpp @@ -23,6 +23,8 @@ */ #pragma once +#include "utils.hpp" // IndirectInputArg + namespace arm_gemm { template @@ -39,4 +41,8 @@ void compute_col_sums(const Requantize32 &qp, unsigned int width, unsigned int h const T *input, unsigned int in_stride, int32_t *col_bias, unsigned int depth, unsigned int multi, unsigned int first_col); +template +void row_sums_indirect(unsigned int num_strings, const unsigned int *string_lengths, IndirectInputArg A_arg, + size_t M, int32_t *output_ptr, const Requantize32 *qp); + } // namespace arm_gemm -- cgit v1.2.1