pub struct QuantumKernelConfig {
pub feature_map: QuantumFeatureMap,
pub n_qubits: usize,
pub circuit_depth: usize,
pub entanglement: EntanglementPattern,
pub n_samples: usize,
}Expand description
Configuration for quantum kernel approximation
Fields§
§feature_map: QuantumFeatureMapQuantum feature map to use
n_qubits: usizeNumber of qubits (simulated)
circuit_depth: usizeCircuit depth (number of repetitions)
entanglement: EntanglementPatternEntangling configuration
n_samples: usizeNumber of classical samples for approximation
Trait Implementations§
Source§impl Clone for QuantumKernelConfig
impl Clone for QuantumKernelConfig
Source§fn clone(&self) -> QuantumKernelConfig
fn clone(&self) -> QuantumKernelConfig
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 QuantumKernelConfig
impl Debug for QuantumKernelConfig
Source§impl Default for QuantumKernelConfig
impl Default for QuantumKernelConfig
Source§impl<'de> Deserialize<'de> for QuantumKernelConfig
impl<'de> Deserialize<'de> for QuantumKernelConfig
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 QuantumKernelConfig
impl RefUnwindSafe for QuantumKernelConfig
impl Send for QuantumKernelConfig
impl Sync for QuantumKernelConfig
impl Unpin for QuantumKernelConfig
impl UnwindSafe for QuantumKernelConfig
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