pub struct ProviderBlackScholesPriceInput<'a> {
pub handle: &'a GpuTensorHandle,
pub shape: &'a [usize],
pub strides: &'a [usize],
}Expand description
Single broadcastable resident GPU input supplied to provider-side Black-Scholes pricing.
Fields§
§handle: &'a GpuTensorHandle§shape: &'a [usize]Input shape aligned to output_shape rank using MATLAB implicit-expansion rules.
strides: &'a [usize]Column-major strides for shape.
Trait Implementations§
Source§impl<'a> Clone for ProviderBlackScholesPriceInput<'a>
impl<'a> Clone for ProviderBlackScholesPriceInput<'a>
Source§fn clone(&self) -> ProviderBlackScholesPriceInput<'a>
fn clone(&self) -> ProviderBlackScholesPriceInput<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for ProviderBlackScholesPriceInput<'a>
Auto Trait Implementations§
impl<'a> Freeze for ProviderBlackScholesPriceInput<'a>
impl<'a> RefUnwindSafe for ProviderBlackScholesPriceInput<'a>
impl<'a> Send for ProviderBlackScholesPriceInput<'a>
impl<'a> Sync for ProviderBlackScholesPriceInput<'a>
impl<'a> Unpin for ProviderBlackScholesPriceInput<'a>
impl<'a> UnsafeUnpin for ProviderBlackScholesPriceInput<'a>
impl<'a> UnwindSafe for ProviderBlackScholesPriceInput<'a>
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