chore(tfhe): dump non deterministic key and use deterministic when required

This commit is contained in:
Arthur Meyre
2023-06-27 13:25:28 +02:00
parent f9b49eeb39
commit 6ac96bb46a
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ fn client_server_keys() {
let start = std::time::Instant::now();
let _ = KEY_CACHE.get_from_param(params.with_deterministic_execution());
let _ = KEY_CACHE.get_from_param(params.with_non_deterministic_execution());
let stop = start.elapsed().as_secs();

View File

@@ -145,7 +145,7 @@ pub struct MultiBitPBSParameters {
impl MultiBitPBSParameters {
pub const fn with_deterministic_execution(self) -> Self {
Self {
deterministic_execution: false,
deterministic_execution: true,
..self
}
}