Lines Matching refs:lhs_offset
33 GemvQuantized8BitOperation(std::int32_t lhs_offset, std::int32_t rhs_offset, in GemvQuantized8BitOperation() argument
36 : Quantized8BitOperation(lhs_offset, rhs_offset, sum_offset, multiplier, in GemvQuantized8BitOperation()
43 gemv_q8(scratch, lhs, rhs, n, k, lhs_offset, rhs_offset, sum_offset, in ExecuteMatrixMatrix()
55 GemvFloatOperation(std::int32_t lhs_offset, std::int32_t rhs_offset, in GemvFloatOperation() argument
57 : FloatOperation(lhs_offset, rhs_offset, result_offset) {} in GemvFloatOperation()
63 gemv_f(scratch, lhs, rhs, n, k, lhs_offset, rhs_offset, result_offset, in ExecuteMatrixMatrix()
75 GemvInt32Operation(std::int32_t lhs_offset, std::int32_t rhs_offset) in GemvInt32Operation() argument
76 : Int32Operation(lhs_offset, rhs_offset) {} in GemvInt32Operation()
82 gemv_i32(scratch, lhs, rhs, n, k, lhs_offset, rhs_offset, result); in ExecuteMatrixMatrix()
102 std::int32_t k, std::int32_t lhs_offset, in multi_thread_gemv_q8() argument
107 internal::GemvQuantized8BitOperation operation(lhs_offset, rhs_offset, in multi_thread_gemv_q8()
126 std::int32_t k, std::int32_t lhs_offset, in multi_thread_gemv_f() argument
130 internal::GemvFloatOperation operation(lhs_offset, rhs_offset, result_offset); in multi_thread_gemv_f()
149 std::int32_t lhs_offset, std::int32_t rhs_offset, in multi_thread_gemv_i32() argument
152 internal::GemvInt32Operation operation(lhs_offset, rhs_offset); in multi_thread_gemv_i32()