Skip to content

Commit

Permalink
chore: fix doc about QuantizedReshape
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBredehoft committed Apr 24, 2024
1 parent 28e792f commit 79b1719
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/concrete/ml/quantization/quantized_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,11 +717,10 @@ def q_impl(
def can_fuse(self) -> bool:
"""Determine if this op can be fused.
Max Pooling operation can not be fused since it must be performed over integer tensors and
it combines different elements of the input tensors.
Reshape operation can not be fused since it must be performed over integer tensors.
Returns:
bool: False, this operation can not be fused as it adds different encrypted integers
bool: False, this operation can not be fused.
"""
return False

Expand Down

0 comments on commit 79b1719

Please sign in to comment.