pub struct QuantumQuantizer { /* private fields */ }Expand description
Quantum-inspired quantization engine
Implementations§
Source§impl QuantumQuantizer
impl QuantumQuantizer
Sourcepub fn new(config: QuantumConfig) -> Self
pub fn new(config: QuantumConfig) -> Self
Create a new quantum quantizer
Sourcepub fn quantize(
&mut self,
tensor: &Tensor,
) -> TorshResult<QuantumQuantizationResult>
pub fn quantize( &mut self, tensor: &Tensor, ) -> TorshResult<QuantumQuantizationResult>
Perform quantum-inspired quantization
Sourcepub fn get_metrics(&self) -> &QuantumMetrics
pub fn get_metrics(&self) -> &QuantumMetrics
Get current quantum metrics
Sourcepub fn quantum_anneal_optimize(
&mut self,
target_compression: f32,
) -> TorshResult<QuantumConfig>
pub fn quantum_anneal_optimize( &mut self, target_compression: f32, ) -> TorshResult<QuantumConfig>
Perform quantum annealing optimization
Trait Implementations§
Source§impl Clone for QuantumQuantizer
impl Clone for QuantumQuantizer
Source§fn clone(&self) -> QuantumQuantizer
fn clone(&self) -> QuantumQuantizer
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for QuantumQuantizer
impl RefUnwindSafe for QuantumQuantizer
impl Send for QuantumQuantizer
impl Sync for QuantumQuantizer
impl Unpin for QuantumQuantizer
impl UnsafeUnpin for QuantumQuantizer
impl UnwindSafe for QuantumQuantizer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more