From 265bb0f8936c99ea62be71c76236d5006a436aeb Mon Sep 17 00:00:00 2001 From: jfrery Date: Thu, 20 Jun 2024 14:18:41 +0200 Subject: [PATCH] chore: fix review --- src/concrete/ml/quantization/quantized_ops.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/concrete/ml/quantization/quantized_ops.py b/src/concrete/ml/quantization/quantized_ops.py index bb62808de..50ef96b0b 100644 --- a/src/concrete/ml/quantization/quantized_ops.py +++ b/src/concrete/ml/quantization/quantized_ops.py @@ -1717,7 +1717,7 @@ def q_impl( def can_fuse(self) -> bool: """Determine if this op can be fused. - Add operation can be computed in float and fused if it operates over inputs produced + Div operation can be computed in float and fused if it operates over inputs produced by a single integer tensor. Returns: @@ -1833,7 +1833,7 @@ def copy_function(x): def can_fuse(self) -> bool: """Determine if this op can be fused. - Add operation can be computed in float and fused if it operates over inputs produced + Mul operation can be computed in float and fused if it operates over inputs produced by a single integer tensor. Returns: