From 48a0b665b831c30e4bdf8c2ddfd70ad09b95d302 Mon Sep 17 00:00:00 2001 From: "T.J. Alumbaugh" Date: Mon, 27 Jan 2020 17:07:47 -0800 Subject: [PATCH] Fix build of neon_tensor_utils for android_x86 PiperOrigin-RevId: 291833076 Change-Id: I93398a8f46101708d1d010573f1216473fbdee16 --- .../kernels/internal/reference/portable_tensor_utils_impl.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tensorflow/lite/kernels/internal/reference/portable_tensor_utils_impl.h b/tensorflow/lite/kernels/internal/reference/portable_tensor_utils_impl.h index 1fe4b950826..fce058ad603 100644 --- a/tensorflow/lite/kernels/internal/reference/portable_tensor_utils_impl.h +++ b/tensorflow/lite/kernels/internal/reference/portable_tensor_utils_impl.h @@ -67,6 +67,12 @@ void PortableMatrixBatchVectorMultiplyAccumulate( const int8_t* __restrict__ vectors, const float* scaling_factors, int n_batch, float* __restrict__ result, int result_stride); +void PortableMatrixBatchVectorMultiplyAccumulate( + const int8_t* __restrict__ matrix, const int m_rows, const int m_cols, + const int8_t* __restrict__ vector, const float* scaling_factors, + int n_batch, int32_t* scratch, float* __restrict__ result, + int result_stride, CpuBackendContext* context); + void PortableMatrixBatchVectorMultiplyAccumulate( const int8_t* __restrict__ matrix, const int m_rows, const int m_cols, const int8_t* __restrict__ vectors, const float* scaling_factors,