Instruction Complexity
The complexity of an instruction depends on its type, the input arguments it processes, and the cryptographic parameters influencing its execution. For operations involving encrypted data, the same instruction can have varying complexity based on the input ciphertexts and the cryptographic context.
Factors Affecting Instruction Complexity
Input Arguments The data passed to the instruction, such as ciphertexts, influences complexity.
Cryptographic Parameters Contextual settings that define the operational environment, including:
Ring Dimension (N): Determines the size of polynomial arithmetic, affecting computational cost.
Scaling Factor (Δ): Influences the precision of encrypted computations.
Security Level: Indicates the cryptographic strength and associated resource requirements.
Example: Encrypted Multiplication
For the instruction fhe.bgv.mult
(multiplication of encrypted values), the complexity is affected by:
Ciphertexts:
Multiplicative Depth (D): Indicates how many operations have been performed on the ciphertext. Higher depth increases complexity due to relinearization and modulus switching.
CryptoContext Parameters:
Ring Dimension (N): Governs the cost of polynomial operations.
Scaling Factor (Δ): Affects the precision and associated computation.
For each instruction there is cost function that evaluates its complexity based on the given input and cryptographic environment.
Last updated