Lines Matching refs:lhs_offset
61 GemmQuantized8BitOperation(std::int32_t lhs_offset, std::int32_t rhs_offset, in GemmQuantized8BitOperation() argument
64 : Quantized8BitOperation(lhs_offset, rhs_offset, sum_offset, multiplier, in GemmQuantized8BitOperation()
81 gemm_q8_strided(scratch, lhs, rhs, m, n, k, lhs_offset, rhs_offset, in ExecuteCacheFriendlyMatrixMatrix()
93 GemmFloatOperation(std::int32_t lhs_offset, std::int32_t rhs_offset, in GemmFloatOperation() argument
95 : FloatOperation(lhs_offset, rhs_offset, result_offset) {} in GemmFloatOperation()
111 gemm_f_strided(scratch, lhs, rhs, m, n, k, lhs_offset, rhs_offset, in ExecuteCacheFriendlyMatrixMatrix()
123 GemmInt32Operation(std::int32_t lhs_offset, std::int32_t rhs_offset) in GemmInt32Operation() argument
124 : Int32Operation(lhs_offset, rhs_offset) {} in GemmInt32Operation()
140 gemm_i32_strided(scratch, lhs, rhs, m, n, k, lhs_offset, rhs_offset, result, in ExecuteCacheFriendlyMatrixMatrix()
162 std::int32_t lhs_offset, std::int32_t rhs_offset, in multi_thread_gemm_q8() argument
166 multi_thread_gemv_q8(pool, max_threads, scratch, lhs, rhs, n, k, lhs_offset, in multi_thread_gemm_q8()
171 lhs_offset, sum_offset, multiplier, shift, result); in multi_thread_gemm_q8()
176 internal::GemmQuantized8BitOperation operation(lhs_offset, rhs_offset, in multi_thread_gemm_q8()
197 std::int32_t lhs_offset, std::int32_t rhs_offset, in multi_thread_gemm_f() argument
200 multi_thread_gemv_f(pool, max_threads, scratch, lhs, rhs, n, k, lhs_offset, in multi_thread_gemm_f()
205 lhs_offset, result_offset, result); in multi_thread_gemm_f()
210 internal::GemmFloatOperation operation(lhs_offset, rhs_offset, result_offset); in multi_thread_gemm_f()
230 std::int32_t lhs_offset, std::int32_t rhs_offset, in multi_thread_gemm_i32() argument
234 lhs_offset, rhs_offset, result); in multi_thread_gemm_i32()
238 rhs_offset, lhs_offset, result); in multi_thread_gemm_i32()
243 internal::GemmInt32Operation operation(lhs_offset, rhs_offset); in multi_thread_gemm_i32()