public class CUdevprop
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
int |
clockRate
The clock frequency in kilohertz;
|
int[] |
maxGridSize
The maximum sizes of each dimension of a grid;
|
int[] |
maxThreadsDim
The maximum sizes of each dimension of a block;
|
int |
maxThreadsPerBlock
The maximum number of threads per block;
|
int |
memPitch
The maximum pitch allowed by the memory copy functions that involve memory regions allocated through cuMemAllocPitch();
|
int |
regsPerBlock
The total number of registers available per block;
|
int |
sharedMemPerBlock
The total amount of shared memory available per block in bytes;
|
int |
SIMDWidth
The warp size;
|
int |
textureAlign
The alignment requirement; texture base addresses that are aligned to textureAlign bytes do not need an offset applied to texture fetches
|
int |
totalConstantMemory
The total amount of constant memory available on the device in bytes;
|
Constructor and Description |
---|
CUdevprop()
Creates a new, uninitialized CUdevprop
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toFormattedString()
Creates and returns a formatted (aligned, multi-line) String
representation of this object
|
java.lang.String |
toString()
Returns a String representation of this object.
|
public int maxThreadsPerBlock
public int[] maxThreadsDim
public int[] maxGridSize
public int sharedMemPerBlock
public int totalConstantMemory
public int SIMDWidth
public int memPitch
public int regsPerBlock
public int clockRate
public int textureAlign
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String toFormattedString()