We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22728b9 commit 766809aCopy full SHA for 766809a
tfhe/src/high_level_api/keys/server.rs
@@ -24,9 +24,10 @@ use std::sync::Arc;
24
///
25
/// For a server to be able to do some FHE computations, the client needs to send this key
26
/// beforehand.
27
-// Keys are stored in an Arc, so that cloning them is cheap
28
-// (compared to an actual clone hundreds of MB / GB), and cheap cloning is needed for
29
-// multithreading with less overhead)
+///
+/// Keys are stored in an Arc, so that cloning them is cheap
+/// (compared to an actual clone hundreds of MB / GB), and cheap cloning is needed for
30
+/// multithreading with less overhead)
31
#[derive(Clone, Versionize)]
32
#[versionize(ServerKeyVersions)]
33
pub struct ServerKey {
0 commit comments