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.

Allocates a new uninitialized buffer on the device, then asynchronously 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 uninitialized buffer on the device, then synchronously fills it with input. input will be dropped when the stream is synced or dropped. 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.

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.

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 will be dropped when the stream is synced or dropped. Does not allocate the memory asynchronously.

Leaks the DeviceBox, similar to Box::leak.

Constructs a DeviceBox from a device pointer.

Methods from Deref<Target = DevicePtr<'a>>

Synchronously copies data from self to target. Panics if length is not equal.

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.

Asynchronously copies data from source to self. Panics if length is not equal.

Gets a subslice of this slice from [from:to]

Gets the length of this slice

Check if the slice’s length is 0

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.

Asynchronously stores host data from data to self. data will be dropped once the Stream is synced or dropped.

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.

Gets a reference to the owning handle

Trait Implementations

Performs the conversion.

The resulting type after dereferencing.

Dereferences the value.

Mutably dereferences the value.

Executes the destructor for this type. Read more

WARNING: this is unsafe!

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.