Show / Hide Table of Contents

Class blockDim

Static class to guide work distribution on device for the Thread part : Dimension (maps on vector unit index for the vectorized flavors)

Inheritance
System.Object
blockDim
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Hybridizer.Runtime.CUDAImports
Assembly: Hybridizer.Runtime.CUDAImports.dll
Syntax
[Guid("ABAD87BA-63A6-44EC-BEE5-BB7A074BC165")]
public static class blockDim

Properties

x

X component (lowest weight)

Declaration
public static int x
{
    [IntrinsicConstant("__hybridizer_blockDimX")]
    get;
}
Property Value
Type Description
System.Int32

y

Y component

Declaration
public static int y
{
    [IntrinsicConstant("__hybridizer_blockDimY")]
    get;
}
Property Value
Type Description
System.Int32

z

Z component (highest weight)

Declaration
public static int z
{
    [IntrinsicConstant("__hybridizer_blockDimZ")]
    get;
}
Property Value
Type Description
System.Int32
Back to top Generated by DocFX