pub struct GPUSparseFFTConfig {
pub base_config: SparseFFTConfig,
pub backend: GPUBackend,
pub device_id: i32,
pub batch_size: usize,
pub max_memory: usize,
pub use_mixed_precision: bool,
pub use_inplace: bool,
pub stream_count: usize,
}
Expand description
GPU-accelerated sparse FFT configuration
Fields§
§base_config: SparseFFTConfig
Base sparse FFT configuration
backend: GPUBackend
GPU backend to use
device_id: i32
Device ID to use (-1 for auto-select)
batch_size: usize
Batch size for processing multiple signals
max_memory: usize
Maximum memory usage in bytes (0 for unlimited)
use_mixed_precision: bool
Enable mixed precision computation
use_inplace: bool
Use in-place computation when possible
stream_count: usize
Stream count for parallel execution on GPU
Trait Implementations§
Source§impl Clone for GPUSparseFFTConfig
impl Clone for GPUSparseFFTConfig
Source§fn clone(&self) -> GPUSparseFFTConfig
fn clone(&self) -> GPUSparseFFTConfig
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 GPUSparseFFTConfig
impl Debug for GPUSparseFFTConfig
Auto Trait Implementations§
impl Freeze for GPUSparseFFTConfig
impl RefUnwindSafe for GPUSparseFFTConfig
impl Send for GPUSparseFFTConfig
impl Sync for GPUSparseFFTConfig
impl Unpin for GPUSparseFFTConfig
impl UnwindSafe for GPUSparseFFTConfig
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