You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tfhe/docs/fhe-computation/compute/parameters.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -32,10 +32,10 @@ These default parameters may be updated with in future releases of **TFHE-rs**,
32
32
33
33
Parameter sets are versioned for backward compatibility. This means that each set of parameters can be tied to a specific version of **TFHE-rs**, so that they remain unchanged and compatible after an upgrade.
34
34
35
-
All parameter sets are stored as variables inside the `tfhe::shortint::parameters` module, with submodules named after the versions of **TFHE-rs** in which these parameters where added. For example, parameters added in **TFHE-rs** v1.0 can be found inside `tfhe::shortint::parameters::v1_1`.
35
+
All parameter sets are stored as variables inside the `tfhe::shortint::parameters` module, with submodules named after the versions of **TFHE-rs** in which these parameters where added. For example, parameters added in **TFHE-rs** v1.0 can be found inside `tfhe::shortint::parameters::v1_0`.
36
36
37
-
The naming convention of these parameters indicates their capabilities. Taking `tfhe::parameters::v1_1::V1_1_PARAM_MESSAGE_2_CARRY_2_KS_PBS_TUNIFORM_2M128` as an example:
38
-
-`V1_1`: these parameters were introduced in **TFHE-rs** v1.0
37
+
The naming convention of these parameters indicates their capabilities. Taking `tfhe::parameters::v1_2::V1_2_PARAM_MESSAGE_2_CARRY_2_KS_PBS_TUNIFORM_2M128` as an example:
38
+
-`V1_2`: these parameters were introduced in **TFHE-rs** v1.0
39
39
-`MESSAGE_2`: LWE blocks include 2 bits of message
40
40
-`CARRY_2`: LWE blocks include 2 bits of carry
41
41
-`KS_PBS`: the keyswitch is computed before the bootstrap
@@ -50,11 +50,11 @@ You can override the default parameters with the `with_custom_parameters(block_p
0 commit comments