Enum ocl::enums::KernelWorkGroupInfoResult[][src]

pub enum KernelWorkGroupInfoResult {
    WorkGroupSize(usize),
    CompileWorkGroupSize([usize; 3]),
    LocalMemSize(u64),
    PreferredWorkGroupSizeMultiple(usize),
    PrivateMemSize(u64),
    GlobalWorkSize([usize; 3]),
    Empty(EmptyInfoResultError),
    Unavailable(Status),
    CustomBuiltinOnly,
}

A kernel work group info result.

Variants

Methods

impl KernelWorkGroupInfoResult
[src]

Trait Implementations

impl Debug for KernelWorkGroupInfoResult
[src]

Formats the value using the given formatter. Read more

impl Display for KernelWorkGroupInfoResult
[src]

Formats the value using the given formatter. Read more

impl From<KernelWorkGroupInfoResult> for String
[src]

Performs the conversion.

Auto Trait Implementations