Lines Matching refs:rhs_offset
60 GemmQuantized8BitOperation(std::int32_t lhs_offset, std::int32_t rhs_offset, in GemmQuantized8BitOperation() argument
64 rhs_offset(rhs_offset), in GemmQuantized8BitOperation()
83 gemm_q8_strided(scratch, lhs, rhs, m, n, k, lhs_offset, rhs_offset, in ExecuteCacheFriendlyMatrixMatrix()
94 std::int32_t rhs_offset; variable
102 GemmFloatOperation(std::int32_t lhs_offset, std::int32_t rhs_offset, in GemmFloatOperation() argument
105 rhs_offset(rhs_offset), in GemmFloatOperation()
122 gemm_f_strided(scratch, lhs, rhs, m, n, k, lhs_offset, rhs_offset, in ExecuteCacheFriendlyMatrixMatrix()
133 std::int32_t rhs_offset; variable
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()
167 std::int32_t rhs_offset; variable
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()