Bootstrap not work with default parameters, HEFloatRealParamsN13QP218 #446
-
The program above reports an error: "panic: cannot BootstrapMany: cannot BootstrapMany: initial Q/Scale = 8.000214 < 0.5*Q[0]/MessageRatio = 256.000000" |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
This happens because the message ratio (Q/Scale) (~8) is smaller than the parameterized message ratio (256) and the input ciphertext is at level 0 (else it could use a level to bring it up). The parameterized message ratio is changed in this script here to ensure that the precision remains the same as when doing with
|
Beta Was this translation helpful? Give feedback.
-
To keep it simple, LogN=16 is necessary to ensure a secure instance of the bootstrapping parameters. If you reduce it, your instance will be insecure. edit: typo |
Beta Was this translation helpful? Give feedback.
To keep it simple, LogN=16 is necessary to ensure a secure instance of the bootstrapping parameters. If you reduce it, your instance will be insecure.
edit: typo