Skip to content

Commit fc4abd5

Browse files
committed
chore: update toolchain
1 parent 5de1445 commit fc4abd5

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ bytemuck = "1.14.3"
2121
dyn-stack = { version = "0.11", default-features = false }
2222
itertools = "0.14"
2323
num-complex = "0.4"
24-
pulp = { version = "0.20", default-features = false }
24+
pulp = { version = "0.21", default-features = false }
2525
rand = "0.8"
2626
rayon = "1"
2727
serde = { version = "1.0", default-features = false }

tfhe/docs/fhe-computation/advanced-features/overflow_operations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ Here's the list of operations supported along with their symbol:
1717
The usage of these operations is similar to the standard ones. The key difference is in the decryption process, as shown in following example:
1818

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

2525
use tfhe::prelude::*;
2626
use tfhe::{generate_keys, set_server_key, ConfigBuilder, FheUint16};

tfhe/src/integer/gpu/server_key/radix/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ impl CudaServerKey {
289289
uses_carry,
290290
);
291291
}
292-
};
292+
}
293293
carry_out
294294
}
295295

@@ -367,7 +367,7 @@ impl CudaServerKey {
367367
uses_carry,
368368
);
369369
}
370-
};
370+
}
371371
carry_out
372372
}
373373

toolchain.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2024-11-29
1+
nightly-2025-02-19

0 commit comments

Comments
 (0)