Skip to content

Commit 49e4da6

Browse files
committed
fixup: src: cpu: aarch64: Enable static quantisation
1 parent ed51cb2 commit 49e4da6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cpu/aarch64/acl_convolution_utils.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ status_t execute_forward_conv_acl(const exec_ctx_t &ctx,
162162
*wei_scale, wei_zero_point, true));
163163
}
164164

165-
// for efficiency reasons, OneDNN saves the inverse of the destination
165+
// for efficiency reasons, oneDNN saves the inverse of the destination
166166
dst_tensor.info()->set_quantization_info(arm_compute::QuantizationInfo(
167167
1.0 / (*dst_scale), dst_zero_point, true));
168168
}

src/cpu/aarch64/matmul/acl_lowp_matmul_sq.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ status_t acl_lowp_matmul_sq_t::execute(const exec_ctx_t &ctx) const {
223223
acl_obj.wei_tensor.info()->set_quantization_info(
224224
arm_compute::QuantizationInfo(*wei_scale, -wei_zero_point, true));
225225

226-
// for efficiency reasons, OneDNN saves the inverse of the destination
226+
// for efficiency reasons, oneDNN saves the inverse of the destination
227227
acl_obj.dst_tensor.info()->set_quantization_info(
228228
arm_compute::QuantizationInfo(
229229
1.0 / (*dst_scale), dst_zero_point, true));

0 commit comments

Comments
 (0)