Skip to content

Commit

Permalink
chore: fix forbidden words
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrery committed Apr 17, 2024
1 parent 5688e3b commit 5ace35f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/concrete/ml/quantization/quantized_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ def _fhe_forward(

# Whether the old simulation method should be used based on USE_OLD_VL
# FIXME: https://github.com/zama-ai/concrete-ml-internal/issues/4391
# and the circuit encoding (CRT encoding should use CP VL)
# and the circuit encoding (CRT encoding should use Concrete VL)
if USE_OLD_VL or is_crt_encoding:
predict_method = partial(
self.fhe_circuit.graph, p_error=self.fhe_circuit.p_error
Expand Down
2 changes: 1 addition & 1 deletion src/concrete/ml/sklearn/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ def predict(self, X: Data, fhe: Union[FheMode, str] = FheMode.DISABLE) -> numpy.

# Whether the old simulation method should be used based on USE_OLD_VL
# FIXME: https://github.com/zama-ai/concrete-ml-internal/issues/4391
# and the circuit encoding (CRT encoding should use CP VL)
# and the circuit encoding (CRT encoding should use Concrete VL)
if USE_OLD_VL or is_crt_encoding:
predict_method = partial(
self.fhe_circuit.graph, p_error=self.fhe_circuit.p_error
Expand Down

0 comments on commit 5ace35f

Please sign in to comment.