CudaBuffer(CudaDevice device,
long byteCount) |
Allocates a new region on the specified device of size byteCount bytes.
|
CudaEvent(CudaDevice device) |
Creates a new event on the specified device with default flags.
|
CudaEvent(CudaDevice device,
int flags) |
Creates a new event on the specified device with the specified flags .
|
CudaLinker(CudaDevice device) |
Creates a new linker for the specified device
using default options.
|
CudaLinker(CudaDevice device,
CudaJitOptions options) |
Creates a new linker for the specified device
using the specified options .
|
CudaModule(CudaDevice device,
byte[] image) |
Loads a module on the specified device, using the given image and the
default options.
|
CudaModule(CudaDevice device,
byte[] image,
CudaJitOptions options) |
Loads a module on the specified device, using the given image and the
given options.
|
CudaModule(CudaDevice device,
InputStream input) |
Loads a module on the specified device from the given input stream using
the default options.
|
CudaModule(CudaDevice device,
InputStream input,
CudaJitOptions options) |
Loads a module on the specified device from the given input stream using
the specified options.
|
CudaStream(CudaDevice device) |
Creates a new stream on the specified device, with the default flags
and the default priority.
|
CudaStream(CudaDevice device,
int flags,
int priority) |
Creates a new stream on the specified device, with the specified flags
and priority.
|