mirror of
https://github.com/zama-ai/concrete.git
synced 2026-01-09 12:57:55 -05:00
fix(optimizer): add zero noise and max noise ops
This commit is contained in:
@@ -29,7 +29,7 @@ Example:
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait
|
||||
|
||||
Interfaces: AdditiveNoise, Binary, BinaryEintInt, ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
Interfaces: Binary, BinaryEintInt, ConditionallySpeculatable, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
@@ -581,7 +581,7 @@ Example:
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait
|
||||
|
||||
Interfaces: AdditiveNoise, ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface), UnaryEint
|
||||
Interfaces: ConditionallySpeculatable, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface), UnaryEint
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
@@ -698,7 +698,7 @@ Example:
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait
|
||||
|
||||
Interfaces: AdditiveNoise, Binary, BinaryEintInt, ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
Interfaces: Binary, BinaryEintInt, ConditionallySpeculatable, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
@@ -774,7 +774,7 @@ Example:
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait
|
||||
|
||||
Interfaces: AdditiveNoise, Binary, BinaryIntEint, ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
Interfaces: Binary, BinaryIntEint, ConditionallySpeculatable, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@ Examples:
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait, TensorBinaryEintInt, TensorBroadcastingRules
|
||||
|
||||
Interfaces: Binary, BinaryEintInt, ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
Interfaces: Binary, BinaryEintInt, ConditionallySpeculatable, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
@@ -350,7 +350,7 @@ Examples:
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait
|
||||
|
||||
Interfaces: ConditionallySpeculatable, ConstantNoise, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
Interfaces: ConditionallySpeculatable, ConstantNoise, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
@@ -397,7 +397,7 @@ Examples:
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait
|
||||
|
||||
Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
Interfaces: ConditionallySpeculatable, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
@@ -560,7 +560,7 @@ Notes:
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait
|
||||
|
||||
Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
Interfaces: ConditionallySpeculatable, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
@@ -614,7 +614,7 @@ Examples:
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait
|
||||
|
||||
Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
Interfaces: ConditionallySpeculatable, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
@@ -643,7 +643,7 @@ Creates a tensor with a single element.
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait
|
||||
|
||||
Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
Interfaces: ConditionallySpeculatable, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
@@ -1300,7 +1300,7 @@ Examples:
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait, TensorUnaryEint
|
||||
|
||||
Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface), UnaryEint
|
||||
Interfaces: ConditionallySpeculatable, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface), UnaryEint
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
@@ -1435,7 +1435,7 @@ Examples:
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait, TensorBinaryEintInt, TensorBroadcastingRules
|
||||
|
||||
Interfaces: Binary, BinaryEintInt, ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
Interfaces: Binary, BinaryEintInt, ConditionallySpeculatable, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
@@ -1548,7 +1548,7 @@ Examples:
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait, TensorBinaryIntEint, TensorBroadcastingRules
|
||||
|
||||
Interfaces: Binary, BinaryIntEint, ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
Interfaces: Binary, BinaryIntEint, ConditionallySpeculatable, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface)
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
@@ -1761,7 +1761,7 @@ Examples:
|
||||
|
||||
Traits: AlwaysSpeculatableImplTrait
|
||||
|
||||
Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface), UnaryEint
|
||||
Interfaces: ConditionallySpeculatable, MaxNoise, NoMemoryEffect (MemoryEffectOpInterface), UnaryEint
|
||||
|
||||
Effects: MemoryEffects::Effect{}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user