Skip to content

Commit

Permalink
chore: update toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeul-zama committed Feb 21, 2025
1 parent 6b21bff commit 22e2f16
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ bytemuck = "1.14.3"
dyn-stack = { version = "0.11", default-features = false }
itertools = "0.14"
num-complex = "0.4"
pulp = { version = "0.20", default-features = false }
pulp = { version = "0.21", default-features = false }
rand = "0.8"
rayon = "1"
serde = { version = "1.0", default-features = false }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ Here's the list of operations supported along with their symbol:
The usage of these operations is similar to the standard ones. The key difference is in the decryption process, as shown in following example:

```rust
/// Adds two [FheUint] and returns a boolean indicating overflow.
///
/// * The operation is modular, i.e on overflow the result wraps around.
/// * On overflow the [FheBool] is true, otherwise false
// Adds two [FheUint] and returns a boolean indicating overflow.
//
// * The operation is modular, i.e on overflow the result wraps around.
// * On overflow the [FheBool] is true, otherwise false

use tfhe::prelude::*;
use tfhe::{generate_keys, set_server_key, ConfigBuilder, FheUint16};
Expand Down
4 changes: 2 additions & 2 deletions tfhe/src/integer/gpu/server_key/radix/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ impl CudaServerKey {
uses_carry,
);
}
};
}
carry_out
}

Expand Down Expand Up @@ -367,7 +367,7 @@ impl CudaServerKey {
uses_carry,
);
}
};
}
carry_out
}

Expand Down
2 changes: 1 addition & 1 deletion toolchain.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nightly-2024-11-29
nightly-2025-02-19

0 comments on commit 22e2f16

Please sign in to comment.