Enum ocl::SpatialDims[][src]

pub enum SpatialDims {
    Unspecified,
    One(usize),
    Two(usizeusize),
    Three(usizeusizeusize),
}

Specifies a size or offset in up to three dimensions.

Using SpatialDims to specify dimensions for your application may not be appropriate. Custom types implementing the traits MemLen and WorkDims should be created to express more complex relationships between data shape and work size for kernels which do not have a 1:1 correspondence between data set length and global work size.

[FIXME]: Describe the ways a SpatialDims can be created using various From implementations.

[UNSTABLE]: This type and its methods may be renamed or otherwise changed at any time. This is still a work in progress.

Variants

Methods

impl SpatialDims
[src]

Returns a new SpatialDims.

Dimensions must be specified in order from d0 -> d1 -> d2; i.e. d1 cannot be Some(x) if d0 is None.

Explicitly setting all zeros as values is not recommended as it is invalid to OpenCL functions. Use ::Unspecified to represent NULL instead.

Returns the number of dimensions defined by this SpatialDims.

Returns a 3D size or an error if unspecified.

Returns a 3D offset or an error if unspecified.

Returns the product of all contained dimensional values (equivalent to a length, area, or volume) or zero if unspecified.

Check ::is_unspecified if it matters whether or not the zero length has been explicitly set however, explicitly setting all zeros as dimensions is not recommended as it is an invalid value to OpenCL functions. Use ::Unspecified to represent NULL instead.

Takes the length and rounds it up to the nearest incr or an error.

Returns true if this SpatialDims is an Unspecified variant.

Trait Implementations

impl Clone for SpatialDims
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SpatialDims
[src]

Formats the value using the given formatter. Read more

impl Copy for SpatialDims
[src]

impl PartialEq for SpatialDims
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for SpatialDims
[src]

impl MemLen for SpatialDims
[src]

Returns the length of a volume of memory padded to the next multiple of incr. Read more

Returns the exact number of elements of a volume of memory (equivalent to Vec::len()). Read more

Returns the exact lengths of each dimension of a volume of memory.

impl WorkDims for SpatialDims
[src]

Returns the number of dimensions defined.

Returns an array representing the amount of work to be done by a kernel. Read more

Returns an array representing the offset of a work item or memory location. Read more

impl Index<usize> for SpatialDims
[src]

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl<'a> From<&'a SpatialDims> for SpatialDims
[src]

Performs the conversion.

impl From<usize> for SpatialDims
[src]

Performs the conversion.

impl From<isize> for SpatialDims
[src]

Performs the conversion.

impl From<u32> for SpatialDims
[src]

Performs the conversion.

impl From<i32> for SpatialDims
[src]

Performs the conversion.

impl<T: Num + ToPrimitive + Debug + Copy> From<(T,)> for SpatialDims
[src]

Performs the conversion.

impl<'a, T: Num + ToPrimitive + Debug + Copy> From<&'a (T,)> for SpatialDims
[src]

Performs the conversion.

impl<T: Num + ToPrimitive + Debug + Copy> From<[T; 1]> for SpatialDims
[src]

Performs the conversion.

impl<'a, T: Num + ToPrimitive + Debug + Copy> From<&'a [T; 1]> for SpatialDims
[src]

Performs the conversion.

impl<T: Num + ToPrimitive + Debug + Copy> From<(T, T)> for SpatialDims
[src]

Performs the conversion.

impl<'a, T: Num + ToPrimitive + Debug + Copy> From<&'a (T, T)> for SpatialDims
[src]

Performs the conversion.

impl<T: Num + ToPrimitive + Debug + Copy> From<[T; 2]> for SpatialDims
[src]

Performs the conversion.

impl<'a, T: Num + ToPrimitive + Debug + Copy> From<&'a [T; 2]> for SpatialDims
[src]

Performs the conversion.

impl<T: Num + ToPrimitive + Debug + Copy> From<(T, T, T)> for SpatialDims
[src]

Performs the conversion.

impl<'a, T: Num + ToPrimitive + Debug + Copy> From<&'a (T, T, T)> for SpatialDims
[src]

Performs the conversion.

impl<T: Num + ToPrimitive + Debug + Copy> From<[T; 3]> for SpatialDims
[src]

Performs the conversion.

impl<'a, T: Num + ToPrimitive + Debug + Copy> From<&'a [T; 3]> for SpatialDims
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for SpatialDims

impl Sync for SpatialDims