Lines Matching full:rhs_offset
33 GemvQuantized8BitOperation(std::int32_t lhs_offset, std::int32_t rhs_offset,
36 : Quantized8BitOperation(lhs_offset, rhs_offset, sum_offset, multiplier,
43 gemv_q8(scratch, lhs, rhs, n, k, lhs_offset, rhs_offset, sum_offset,
55 GemvFloatOperation(std::int32_t lhs_offset, std::int32_t rhs_offset,
57 : FloatOperation(lhs_offset, rhs_offset, result_offset) {}
63 gemv_f(scratch, lhs, rhs, n, k, lhs_offset, rhs_offset, result_offset,
75 GemvInt32Operation(std::int32_t lhs_offset, std::int32_t rhs_offset)
76 : Int32Operation(lhs_offset, rhs_offset) {}
82 gemv_i32(scratch, lhs, rhs, n, k, lhs_offset, rhs_offset, result);
103 std::int32_t rhs_offset, std::int32_t sum_offset,
107 internal::GemvQuantized8BitOperation operation(lhs_offset, rhs_offset,
127 std::int32_t rhs_offset, float result_offset,
130 internal::GemvFloatOperation operation(lhs_offset, rhs_offset, result_offset);
149 std::int32_t lhs_offset, std::int32_t rhs_offset,
152 internal::GemvInt32Operation operation(lhs_offset, rhs_offset);