public class EXTMigrateMemobject
extends java.lang.Object
This extension defines a mechanism for assigning which device an OpenCL memory object resides.
| Modifier and Type | Field and Description |
|---|---|
static int |
CL_COMMAND_MIGRATE_MEM_OBJECT_EXT
|
static int |
CL_MIGRATE_MEM_OBJECT_HOST_EXT
This flag specifies that the specified set of memory objects are to be migrated to the host, regardless of the target command queue.
|
| Modifier and Type | Method and Description |
|---|---|
static int |
clEnqueueMigrateMemObjectEXT(long command_queue,
org.lwjgl.PointerBuffer mem_objects,
long flags,
org.lwjgl.PointerBuffer event_wait_list,
org.lwjgl.PointerBuffer event)
Provides the application with a way to indicate which device a set of memory objects should be associated.
|
static int |
nclEnqueueMigrateMemObjectEXT(long command_queue,
int num_mem_objects,
long mem_objects,
long flags,
int num_events_in_wait_list,
long event_wait_list,
long event)
Unsafe version of:
EnqueueMigrateMemObjectEXT |
public static final int CL_MIGRATE_MEM_OBJECT_HOST_EXT
public static final int CL_COMMAND_MIGRATE_MEM_OBJECT_EXT
public static int nclEnqueueMigrateMemObjectEXT(long command_queue,
int num_mem_objects,
long mem_objects,
long flags,
int num_events_in_wait_list,
long event_wait_list,
long event)
EnqueueMigrateMemObjectEXTnum_mem_objects - the number of memory objects specified in the mem_objects argumentnum_events_in_wait_list - the number of events in event_wait_listpublic static int clEnqueueMigrateMemObjectEXT(long command_queue,
org.lwjgl.PointerBuffer mem_objects,
long flags,
@Nullable
org.lwjgl.PointerBuffer event_wait_list,
@Nullable
org.lwjgl.PointerBuffer event)
COMPLETE the memory objects specified in
mem_objects have been successfully migrated to the device associated with command_queue. The migrated memory object shall remain
resident on the device until another command is enqueued that either implicitly or explicitly migrates it away. As well, clEnqueueMigrateMemObjectEXT
can be used to direct the initial placement of a memory object, after creation, possibly avoiding the initial overhead of instantiating the object on
the first enqueued command to use it.
The user is responsible for managing the event dependencies, associated with this command, in order to avoid overlapping access to memory objects. Improperly specified event dependencies passed to clEnqueueMigrateMemObject could result in undefined results.
command_queue - a valid command queuemem_objects - the memory objects to migrate to the OpenCL device associated with command_queueflags - a bitfield that is used to specify migration options. One of:| 0 | MIGRATE_MEM_OBJECT_HOST_EXT |
event_wait_list - a list of events that need to complete before this particular command can be executed. If event_wait_list is NULL, then this particular command
does not wait on any event to complete. The events specified in event_wait_list act as synchronization points. The context associated with events in
event_wait_list and command_queue must be the same.event - Returns an event object that identifies this particular command and can be used to query or queue a wait for this particular command to complete.
event can be NULL in which case it will not be possible for the application to query the status of this command or queue a wait for this command to
complete. If the event_wait_list and the event arguments are not NULL, the event argument should not refer to an element of the
event_wait_list array.Copyright LWJGL. All Rights Reserved. License terms.