Skip to content

Commit

Permalink
fixup: src: cpu: aarch64: Enable matmul static quantisation
Browse files Browse the repository at this point in the history
  • Loading branch information
vpirogov committed Jan 15, 2025
1 parent 829ad2b commit 423cdb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpu/aarch64/matmul/acl_lowp_matmul_sq.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ status_t acl_lowp_matmul_sq_t::execute(const exec_ctx_t &ctx) const {
arm_compute::QuantizationInfo(*src_scale, -src_zero_point, true));
acl_obj.wei_tensor.info()->set_quantization_info(
arm_compute::QuantizationInfo(*wei_scale, -wei_zero_point, true));
// for efficiency reasons, OneDNN saves the inverse of the destination
// for efficiency reasons, oneDNN saves the inverse of the destination
acl_obj.dst_tensor.info()->set_quantization_info(
arm_compute::QuantizationInfo(
1.0 / (*dst_scale), dst_zero_point, true));
Expand Down

0 comments on commit 423cdb2

Please sign in to comment.