pub struct DynamicalDecouplingManager {
pub config: DynamicalDecouplingConfig,
pub adaptive_system: Option<AdaptiveDDSystem>,
pub performance_analyzer: DDPerformanceAnalyzer,
pub noise_analyzer: DDNoiseAnalyzer,
pub hardware_analyzer: DDHardwareAnalyzer,
pub sequence_optimizer: DDSequenceOptimizer,
pub sequence_cache: SequenceCache,
pub multi_qubit_coordinator: Option<MultiQubitDDCoordinator>,
}Expand description
Comprehensive DD system manager
Fields§
§config: DynamicalDecouplingConfigSystem configuration
adaptive_system: Option<AdaptiveDDSystem>Adaptive DD system
performance_analyzer: DDPerformanceAnalyzerPerformance analyzer
noise_analyzer: DDNoiseAnalyzerNoise analyzer
hardware_analyzer: DDHardwareAnalyzerHardware analyzer
sequence_optimizer: DDSequenceOptimizerSequence optimizer
sequence_cache: SequenceCacheSequence cache
multi_qubit_coordinator: Option<MultiQubitDDCoordinator>Multi-qubit coordinator
Implementations§
Source§impl DynamicalDecouplingManager
impl DynamicalDecouplingManager
Sourcepub fn new(
config: DynamicalDecouplingConfig,
device_id: String,
topology: Option<HardwareTopology>,
calibration_manager: Option<CalibrationManager>,
) -> Self
pub fn new( config: DynamicalDecouplingConfig, device_id: String, topology: Option<HardwareTopology>, calibration_manager: Option<CalibrationManager>, ) -> Self
Create new DD manager
Sourcepub fn initialize_adaptive_system(
&mut self,
adaptive_config: AdaptiveDDConfig,
initial_sequence: DDSequence,
available_sequences: Vec<DDSequenceType>,
) -> DeviceResult<()>
pub fn initialize_adaptive_system( &mut self, adaptive_config: AdaptiveDDConfig, initial_sequence: DDSequence, available_sequences: Vec<DDSequenceType>, ) -> DeviceResult<()>
Initialize adaptive DD system
Sourcepub fn initialize_multi_qubit_coordination(
&mut self,
crosstalk_mitigation: CrosstalkMitigationStrategy,
synchronization: SynchronizationRequirements,
)
pub fn initialize_multi_qubit_coordination( &mut self, crosstalk_mitigation: CrosstalkMitigationStrategy, synchronization: SynchronizationRequirements, )
Initialize multi-qubit coordination
Sourcepub async fn generate_optimized_sequence(
&mut self,
sequence_type: &DDSequenceType,
target_qubits: &[QubitId],
duration: f64,
executor: &dyn DDCircuitExecutor,
) -> DeviceResult<DynamicalDecouplingResult>
pub async fn generate_optimized_sequence( &mut self, sequence_type: &DDSequenceType, target_qubits: &[QubitId], duration: f64, executor: &dyn DDCircuitExecutor, ) -> DeviceResult<DynamicalDecouplingResult>
Generate optimized DD sequence
Sourcepub fn generate_multi_qubit_sequence(
&mut self,
qubit_groups: Vec<(Vec<QubitId>, DDSequenceType)>,
duration: f64,
) -> DeviceResult<DDSequence>
pub fn generate_multi_qubit_sequence( &mut self, qubit_groups: Vec<(Vec<QubitId>, DDSequenceType)>, duration: f64, ) -> DeviceResult<DDSequence>
Generate coordinated multi-qubit sequence
Sourcepub fn get_system_status(&self) -> DDSystemStatus
pub fn get_system_status(&self) -> DDSystemStatus
Get system status
Auto Trait Implementations§
impl Freeze for DynamicalDecouplingManager
impl !RefUnwindSafe for DynamicalDecouplingManager
impl Send for DynamicalDecouplingManager
impl Sync for DynamicalDecouplingManager
impl Unpin for DynamicalDecouplingManager
impl !UnwindSafe for DynamicalDecouplingManager
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
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.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.