Skip to content

Commit

Permalink
fix: fix wrong flag
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-stoian-zama committed Jun 13, 2024
1 parent d866668 commit cabc34b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def default_configuration():
fhe_simulation=False,
fhe_execution=True,
compress_input_ciphertexts=os.environ.get("USE_INPUT_COMPRESSION", "1") == "1",
compress_eval_keys=True,
compress_evaluation_keys=True,
)


Expand Down
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 @@ -889,7 +889,7 @@ def compile(
fhe_simulation=False,
fhe_execution=True,
compress_input_ciphertexts=enable_input_compression,
compress_eval_keys=True,
compress_evaluation_keys=True,
)

self._is_compiled = True
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 @@ -582,7 +582,7 @@ def compile(
fhe_simulation=False,
fhe_execution=True,
compress_input_ciphertexts=enable_input_compression,
compress_eval_keys=True,
compress_evaluation_keys=True,
)

self._is_compiled = True
Expand Down
2 changes: 1 addition & 1 deletion tests/torch/test_hybrid_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def run_hybrid_llm_test(
configuration = Configuration(
single_precision=False,
compress_input_ciphertexts=True,
compress_eval_keys=True,
compress_evaluation_keys=True,
)

# Create a hybrid model
Expand Down

0 comments on commit cabc34b

Please sign in to comment.