Lines Matching refs:lhs_offset

60   GemmQuantized8BitOperation(std::int32_t lhs_offset, std::int32_t rhs_offset,  in GemmQuantized8BitOperation()  argument
63 : lhs_offset(lhs_offset), in GemmQuantized8BitOperation()
83 gemm_q8_strided(scratch, lhs, rhs, m, n, k, lhs_offset, rhs_offset, in ExecuteCacheFriendlyMatrixMatrix()
93 std::int32_t lhs_offset;
102 GemmFloatOperation(std::int32_t lhs_offset, std::int32_t rhs_offset, in GemmFloatOperation() argument
104 : lhs_offset(lhs_offset), in GemmFloatOperation()
122 gemm_f_strided(scratch, lhs, rhs, m, n, k, lhs_offset, rhs_offset, in ExecuteCacheFriendlyMatrixMatrix()
132 std::int32_t lhs_offset;
139 GemmInt32Operation(std::int32_t lhs_offset, std::int32_t rhs_offset) in GemmInt32Operation() argument
140 : lhs_offset(lhs_offset), rhs_offset(rhs_offset) {} in GemmInt32Operation()
156 gemm_i32_strided(scratch, lhs, rhs, m, n, k, lhs_offset, rhs_offset, result, in ExecuteCacheFriendlyMatrixMatrix()
166 std::int32_t lhs_offset;
182 std::int32_t lhs_offset, std::int32_t rhs_offset, in multi_thread_gemm_q8() argument
185 internal::GemmQuantized8BitOperation operation(lhs_offset, rhs_offset, in multi_thread_gemm_q8()
201 std::int32_t lhs_offset, std::int32_t rhs_offset, in multi_thread_gemm_f() argument
203 internal::GemmFloatOperation operation(lhs_offset, rhs_offset, result_offset); in multi_thread_gemm_f()
218 std::int32_t lhs_offset, std::int32_t rhs_offset, in multi_thread_gemm_i32() argument
220 internal::GemmInt32Operation operation(lhs_offset, rhs_offset); in multi_thread_gemm_i32()