pub struct VulkanStorage;Trait Implementations§
Source§impl BackendStorage for VulkanStorage
impl BackendStorage for VulkanStorage
type Device = VulkanDevice
fn try_clone(&self, _: &Layout) -> Result<Self>
fn dtype(&self) -> DType
fn device(&self) -> &Self::Device
fn const_set(&mut self, _: Scalar, _: &Layout) -> Result<()>
fn to_cpu_storage(&self) -> Result<CpuStorage>
fn affine(&self, _: &Layout, _: f64, _: f64) -> Result<Self>
fn powf(&self, _: &Layout, _: f64) -> Result<Self>
fn elu(&self, _: &Layout, _: f64) -> Result<Self>
fn reduce_op(&self, _: ReduceOp, _: &Layout, _: &[usize]) -> Result<Self>
fn cmp(&self, _: CmpOp, _: &Self, _: &Layout, _: &Layout) -> Result<Self>
fn to_dtype(&self, _: &Layout, _: DType) -> Result<Self>
fn unary_impl<B: UnaryOpT>(&self, _: &Layout) -> Result<Self>
fn binary_impl<B: BinaryOpT>( &self, _: &Self, _: &Layout, _: &Layout, ) -> Result<Self>
fn where_cond( &self, _: &Layout, _: &Self, _: &Layout, _: &Self, _: &Layout, ) -> Result<Self>
fn conv1d( &self, _: &Layout, _: &Self, _: &Layout, _: &ParamsConv1D, ) -> Result<Self>
fn conv_transpose1d( &self, _l: &Layout, _kernel: &Self, _kernel_l: &Layout, _params: &ParamsConvTranspose1D, ) -> Result<Self>
fn conv2d( &self, _: &Layout, _: &Self, _: &Layout, _: &ParamsConv2D, ) -> Result<Self>
fn conv_transpose2d( &self, _l: &Layout, _kernel: &Self, _kernel_l: &Layout, _params: &ParamsConvTranspose2D, ) -> Result<Self>
fn index_select( &self, _: &Self, _: &Layout, _: &Layout, _: usize, ) -> Result<Self>
fn gather(&self, _: &Layout, _: &Self, _: &Layout, _: usize) -> Result<Self>
fn scatter_set( &mut self, _: &Layout, _: &Self, _: &Layout, _: &Self, _: &Layout, _: usize, ) -> Result<()>
fn scatter_add_set( &mut self, _: &Layout, _: &Self, _: &Layout, _: &Self, _: &Layout, _: usize, ) -> Result<()>
fn index_add( &self, _: &Layout, _: &Self, _: &Layout, _: &Self, _: &Layout, _: usize, ) -> Result<Self>
fn matmul( &self, _: &Self, _: (usize, usize, usize, usize), _: &Layout, _: &Layout, ) -> Result<Self>
fn copy_strided_src(&self, _: &mut Self, _: usize, _: &Layout) -> Result<()>
fn copy2d( &self, _: &mut Self, _: usize, _: usize, _: usize, _: usize, _: usize, _: usize, ) -> Result<()>
fn avg_pool2d( &self, _: &Layout, _: (usize, usize), _: (usize, usize), ) -> Result<Self>
fn max_pool2d( &self, _: &Layout, _: (usize, usize), _: (usize, usize), ) -> Result<Self>
fn upsample_nearest1d(&self, _: &Layout, _: usize) -> Result<Self>
fn upsample_nearest2d(&self, _: &Layout, _: usize, _: usize) -> Result<Self>
fn upsample_bilinear2d( &self, _: &Layout, _: usize, _: usize, _: bool, _: Option<f64>, _: Option<f64>, ) -> Result<Self>
Auto Trait Implementations§
impl Freeze for VulkanStorage
impl RefUnwindSafe for VulkanStorage
impl Send for VulkanStorage
impl Sync for VulkanStorage
impl Unpin for VulkanStorage
impl UnsafeUnpin for VulkanStorage
impl UnwindSafe for VulkanStorage
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> ErasedDestructor for Twhere
T: 'static,
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