Struct cuda_oxide::mem::DeviceBox [−][src]
pub struct DeviceBox<'a> { /* fields omitted */ }Expand description
An owned device-allocated buffer
Implementations
Allocate an uninitialized buffer of size size on the device
Allocate a new initialized buffer on the device matching the size and content of input.
pub unsafe fn new_stream(
handle: &Rc<Handle<'a>>,
input: &[u8],
stream: &mut Stream<'a>
) -> CudaResult<Self>[src]
pub unsafe fn new_stream(
handle: &Rc<Handle<'a>>,
input: &[u8],
stream: &mut Stream<'a>
) -> CudaResult<Self>[src]Allocates a new uninitialized buffer on the device, then synchronously fills it with input.
input must not be dropped or mutated until stream.sync is called.
Does not allocate the memory asynchronously.
Allocates a new initialized buffer on the device matching the size and content of input.
Note that memory is directly copied, so [T] must be Sized should not contain any pointers, references, unsized types, or other non-FFI safe types.
pub unsafe fn new_ffi_stream<T>(
handle: &Rc<Handle<'a>>,
input: &[T],
stream: &mut Stream<'a>
) -> CudaResult<Self>[src]
pub unsafe fn new_ffi_stream<T>(
handle: &Rc<Handle<'a>>,
input: &[T],
stream: &mut Stream<'a>
) -> CudaResult<Self>[src]Allocates a new uninitialized buffer on the device, then synchronously fills it with input.
Note that memory is directly copied, so [T] must be Sized should not contain any pointers, references, unsized types, or other non-FFI safe types.
input must not be dropped or mutated until stream.sync is called.
Does not allocate the memory asynchronously.
Methods from Deref<Target = DevicePtr<'a>>
Synchronously copies data from self to target. Panics if length is not equal.
pub fn copy_to_stream<'b, 'c: 'b + 'a>(
&self,
target: &DevicePtr<'b>,
stream: &mut Stream<'c>
) -> CudaResult<()> where
'a: 'b, [src]
pub fn copy_to_stream<'b, 'c: 'b + 'a>(
&self,
target: &DevicePtr<'b>,
stream: &mut Stream<'c>
) -> CudaResult<()> where
'a: 'b, [src]Asynchronously copies data from self to target. Panics if length is not equal.
Synchronously copies data from source to self. Panics if length is not equal.
pub fn copy_from_stream<'b: 'a, 'c: 'a + 'b>(
&self,
source: &DevicePtr<'b>,
stream: &mut Stream<'c>
) -> CudaResult<()>[src]
pub fn copy_from_stream<'b: 'a, 'c: 'a + 'b>(
&self,
source: &DevicePtr<'b>,
stream: &mut Stream<'c>
) -> CudaResult<()>[src]Asynchronously copies data from source to self. Panics if length is not equal.
Synchronously loads the data from this slice into a local buffer
Asynchronously loads the data from this slice into a local buffer.
The contents of the buffer are undefined until stream.sync is called.
The output must not be dropped until the stream is synced.
Synchronously stores host data from data to self.
Asynchronously stores host data from data to self.
The data must not be dropped or mutated until stream.sync is called.
Synchronously set the contents of self to data repeated to fill length
Asynchronously set the contents of self to data repeated to fill length
Synchronously set the contents of self to data repeated to fill length.
Panics if Self::len is not a multiple of 2.
Asynchronously set the contents of self to data repeated to fill length.
Panics if Self::len is not a multiple of 2.
Synchronously set the contents of self to data repeated to fill length.
Panics if Self::len is not a multiple of 4.
Asynchronously set the contents of self to data repeated to fill length.
Panics if Self::len is not a multiple of 4.
Trait Implementations
Auto Trait Implementations
impl<'a> !RefUnwindSafe for DeviceBox<'a>impl<'a> UnwindSafe for DeviceBox<'a>