pub struct CpuBackend { /* private fields */ }
Expand description
CPU backend implementation
Implementations§
Source§impl CpuBackend
impl CpuBackend
Trait Implementations§
Source§impl Default for CpuBackend
impl Default for CpuBackend
Source§impl GpuBackend for CpuBackend
impl GpuBackend for CpuBackend
Source§fn is_available() -> bool
fn is_available() -> bool
Check if this backend is available on the current system
Source§fn device_info(&self) -> String
fn device_info(&self) -> String
Get device information
Source§fn allocate_state_vector(
&self,
n_qubits: usize,
) -> QuantRS2Result<Box<dyn GpuBuffer>>
fn allocate_state_vector( &self, n_qubits: usize, ) -> QuantRS2Result<Box<dyn GpuBuffer>>
Allocate a GPU buffer for a state vector
Source§fn allocate_density_matrix(
&self,
n_qubits: usize,
) -> QuantRS2Result<Box<dyn GpuBuffer>>
fn allocate_density_matrix( &self, n_qubits: usize, ) -> QuantRS2Result<Box<dyn GpuBuffer>>
Allocate a GPU buffer for a density matrix
Source§fn apply_gate(
&self,
state: &mut dyn GpuBuffer,
gate: &dyn GateOp,
qubits: &[QubitId],
n_qubits: usize,
) -> QuantRS2Result<()>
fn apply_gate( &self, state: &mut dyn GpuBuffer, gate: &dyn GateOp, qubits: &[QubitId], n_qubits: usize, ) -> QuantRS2Result<()>
Apply a quantum gate
Source§fn measure(
&self,
state: &mut dyn GpuBuffer,
qubit: QubitId,
n_qubits: usize,
) -> QuantRS2Result<bool>
fn measure( &self, state: &mut dyn GpuBuffer, qubit: QubitId, n_qubits: usize, ) -> QuantRS2Result<bool>
Measure a qubit and collapse the state
Source§fn get_probability(
&self,
state: &dyn GpuBuffer,
qubit: QubitId,
n_qubits: usize,
) -> QuantRS2Result<f64>
fn get_probability( &self, state: &dyn GpuBuffer, qubit: QubitId, n_qubits: usize, ) -> QuantRS2Result<f64>
Get measurement probability without collapsing
Auto Trait Implementations§
impl Freeze for CpuBackend
impl RefUnwindSafe for CpuBackend
impl Send for CpuBackend
impl Sync for CpuBackend
impl Unpin for CpuBackend
impl UnwindSafe for CpuBackend
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> 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.