Struct QuantumDebugProfiling

Source
pub struct QuantumDebugProfiling {
    pub suite_id: u64,
    pub quantum_debugger: QuantumDebugger,
    pub performance_profiler: QuantumPerformanceProfiler,
    pub circuit_analyzer: QuantumCircuitAnalyzer,
    pub state_inspector: QuantumStateInspector,
    pub error_tracker: QuantumErrorTracker,
    pub resource_monitor: QuantumResourceMonitor,
    pub execution_tracer: QuantumExecutionTracer,
    pub optimization_advisor: QuantumOptimizationAdvisor,
}
Expand description

Quantum debugging and profiling suite

Fields§

§suite_id: u64§quantum_debugger: QuantumDebugger§performance_profiler: QuantumPerformanceProfiler§circuit_analyzer: QuantumCircuitAnalyzer§state_inspector: QuantumStateInspector§error_tracker: QuantumErrorTracker§resource_monitor: QuantumResourceMonitor§execution_tracer: QuantumExecutionTracer§optimization_advisor: QuantumOptimizationAdvisor

Implementations§

Source§

impl QuantumDebugProfiling

Implementation of the main debugging and profiling suite

Source

pub fn new() -> Self

Create new quantum debugging and profiling suite

Source

pub fn start_debugging_session( &mut self, target_circuit: String, debugging_mode: DebuggingMode, ) -> Result<u64, QuantRS2Error>

Start comprehensive debugging session

Source

pub fn profile_circuit_execution( &mut self, circuit: &dyn QuantumCircuit, profiling_mode: ProfilingMode, ) -> Result<ProfilingReport, QuantRS2Error>

Execute quantum circuit with comprehensive profiling

Source

pub fn analyze_quantum_circuit( &mut self, circuit: &dyn QuantumCircuit, ) -> Result<CircuitAnalysisReport, QuantRS2Error>

Perform comprehensive circuit analysis

Source

pub fn inspect_quantum_state( &mut self, state: &Array1<Complex64>, inspection_mode: InspectionMode, ) -> Result<StateInspectionReport, QuantRS2Error>

Execute quantum state inspection and analysis

Source

pub fn generate_comprehensive_report(&self) -> QuantumDebugProfilingReport

Generate comprehensive debugging and profiling report

Trait Implementations§

Source§

impl Debug for QuantumDebugProfiling

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

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

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V