pub struct MixedPrecisionConfig {
pub state_vector_precision: QuantumPrecision,
pub gate_precision: QuantumPrecision,
pub measurement_precision: QuantumPrecision,
pub error_tolerance: f64,
pub adaptive_precision: bool,
pub min_precision: QuantumPrecision,
pub max_precision: QuantumPrecision,
pub large_system_threshold: usize,
pub enable_analysis: bool,
}
Expand description
Mixed precision configuration
Fields§
§state_vector_precision: QuantumPrecision
Default precision for state vectors
gate_precision: QuantumPrecision
Default precision for gate operations
measurement_precision: QuantumPrecision
Default precision for measurements
error_tolerance: f64
Error tolerance for precision selection
adaptive_precision: bool
Enable automatic precision adaptation
min_precision: QuantumPrecision
Minimum precision level (never go below this)
max_precision: QuantumPrecision
Maximum precision level (never go above this)
large_system_threshold: usize
Number of qubits threshold for precision reduction
enable_analysis: bool
Enable precision analysis and reporting
Implementations§
Source§impl MixedPrecisionConfig
impl MixedPrecisionConfig
Sourcepub fn for_accuracy() -> Self
pub fn for_accuracy() -> Self
Create configuration optimized for accuracy
Sourcepub fn for_performance() -> Self
pub fn for_performance() -> Self
Create configuration optimized for performance
Sourcepub fn adjust_for_qubits(&mut self, num_qubits: usize)
pub fn adjust_for_qubits(&mut self, num_qubits: usize)
Adjust configuration for a specific number of qubits
Sourcepub fn estimate_memory_usage(&self, num_qubits: usize) -> usize
pub fn estimate_memory_usage(&self, num_qubits: usize) -> usize
Estimate memory usage for a given number of qubits
Sourcepub fn fits_in_memory(&self, num_qubits: usize, available_memory: usize) -> bool
pub fn fits_in_memory(&self, num_qubits: usize, available_memory: usize) -> bool
Check if the configuration is suitable for the available memory
Trait Implementations§
Source§impl Clone for MixedPrecisionConfig
impl Clone for MixedPrecisionConfig
Source§fn clone(&self) -> MixedPrecisionConfig
fn clone(&self) -> MixedPrecisionConfig
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 moreSource§impl Debug for MixedPrecisionConfig
impl Debug for MixedPrecisionConfig
Source§impl Default for MixedPrecisionConfig
impl Default for MixedPrecisionConfig
Source§impl<'de> Deserialize<'de> for MixedPrecisionConfig
impl<'de> Deserialize<'de> for MixedPrecisionConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MixedPrecisionConfig
impl RefUnwindSafe for MixedPrecisionConfig
impl Send for MixedPrecisionConfig
impl Sync for MixedPrecisionConfig
impl Unpin for MixedPrecisionConfig
impl UnwindSafe for MixedPrecisionConfig
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.