Modifier and Type | Method and Description |
---|---|
boolean |
CudaDevice.canAccessPeer(CudaDevice peerDevice)
Returns whether this device can access memory of the specified
peerDevice . |
void |
CudaDevice.disablePeerAccess(CudaDevice peerDevice)
Disable access to memory of
peerDevice by this device. |
void |
CudaDevice.enablePeerAccess(CudaDevice peerDevice)
Enable access to memory of
peerDevice by this device. |
CudaModule |
CudaModule.Cache.get(CudaDevice device,
java.lang.Object key)
Retrieves an existing module for the specified device and key.
|
CudaModule |
CudaModule.Cache.put(CudaDevice device,
java.lang.Object key,
CudaModule module)
Stores a module in this cache, associating it with the given
device and key.
|
void |
CudaEvent.record(CudaDevice device)
Records this event on the default stream of the specified device.
|
Constructor and Description |
---|
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,
java.io.InputStream input)
Loads a module on the specified device from the given input stream using
the default options.
|
CudaModule(CudaDevice device,
java.io.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.
|
Eclipse OpenJ9 website.
To raise a bug report or suggest an improvement create an Eclipse OpenJ9 issue.
Copyright © 2013, 2025 IBM Corp. and others.