Show / Hide Table of Contents

Struct cudaExtent

CUDA extent

Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: Hybridizer.Runtime.CUDAImports
Assembly: Hybridizer.Runtime.CUDAImports.dll
Syntax
[IntrinsicType("cudaExtent")]
public struct cudaExtent

Constructors

cudaExtent(size_t, size_t, size_t)

Declaration
public cudaExtent(size_t w, size_t h, size_t d)
Parameters
Type Name Description
size_t w
size_t h
size_t d

Fields

depth

Depth in elements

Declaration
public size_t depth
Field Value
Type Description
size_t

height

Height in elements

Declaration
public size_t height
Field Value
Type Description
size_t

width

Width in elements when referring to array memory, in bytes when referring to linear memory

Declaration
public size_t width
Field Value
Type Description
size_t
Back to top Generated by DocFX