All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.opencl.EXTMigrateMemobject Maven / Gradle / Ivy

Go to download

An open, royalty-free standard for cross-platform, parallel programming of diverse processors found in personal computers, servers, mobile devices and embedded platforms.

There is a newer version: 3.3.4
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.opencl;

import org.lwjgl.*;

import org.lwjgl.system.*;

import static org.lwjgl.system.Checks.*;
import static org.lwjgl.system.JNI.*;
import static org.lwjgl.system.MemoryUtil.*;

/**
 * Native bindings to the ext_migrate_memobject extension.
 * 
 * 

This extension defines a mechanism for assigning which device an OpenCL memory object resides.

*/ public class EXTMigrateMemobject { /** This flag specifies that the specified set of memory objects are to be migrated to the host, regardless of the target command queue. */ public static final int CL_MIGRATE_MEM_OBJECT_HOST_EXT = 0x1; /** Returned in the {@code param_value} parameter of the clGetEventInfo when {@code param_name} is {@link CL10#CL_EVENT_COMMAND_TYPE EVENT_COMMAND_TYPE}. */ public static final int CL_COMMAND_MIGRATE_MEM_OBJECT_EXT = 0x4040; protected EXTMigrateMemobject() { throw new UnsupportedOperationException(); } static boolean isAvailable(CLCapabilities caps) { return checkFunctions( caps.clEnqueueMigrateMemObjectEXT ); } // --- [ clEnqueueMigrateMemObjectEXT ] --- /** * Unsafe version of: {@link #clEnqueueMigrateMemObjectEXT EnqueueMigrateMemObjectEXT} * * @param num_mem_objects the number of memory objects specified in the {@code mem_objects} argument * @param num_events_in_wait_list the number of events in {@code event_wait_list} */ 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) { long __functionAddress = CL.getICD().clEnqueueMigrateMemObjectEXT; if (CHECKS) { check(__functionAddress); check(command_queue); } return callPPJPPI(__functionAddress, command_queue, num_mem_objects, mem_objects, flags, num_events_in_wait_list, event_wait_list, event); } /** * Provides the application with a way to indicate which device a set of memory objects should be associated. Typically, memory objects are implicitly * migrated to a device for which enqueued commands, using the memory object, are targeted. clEnqueueMigrateMemObjectEXT allows this migration to be * explicitly performed ahead of the dependent commands. This permits an application to overlap the placement of memory objects with other unrelated * operations. Once the OpenCL event, returned from clEnqueueMigrateMemObject, has been marked {@link CL10#CL_COMPLETE COMPLETE} the memory objects specified in * {@code mem_objects} have been successfully migrated to the device associated with {@code 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.

* * @param command_queue a valid command queue * @param mem_objects the memory objects to migrate to the OpenCL device associated with {@code command_queue} * @param flags a bitfield that is used to specify migration options. One of:
0{@link #CL_MIGRATE_MEM_OBJECT_HOST_EXT MIGRATE_MEM_OBJECT_HOST_EXT}
* @param event_wait_list a list of events that need to complete before this particular command can be executed. If {@code event_wait_list} is {@code NULL}, then this particular command * does not wait on any event to complete. The events specified in {@code event_wait_list} act as synchronization points. The context associated with events in * {@code event_wait_list} and {@code command_queue} must be the same. * @param 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. * {@code event} can be {@code 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 {@code event_wait_list} and the {@code event} arguments are not {@code NULL}, the event argument should not refer to an element of the * {@code event_wait_list} array. */ @NativeType("cl_int") public static int clEnqueueMigrateMemObjectEXT(@NativeType("cl_command_queue") long command_queue, @NativeType("const cl_mem *") PointerBuffer mem_objects, @NativeType("cl_mem_migration_flags_ext") long flags, @NativeType("const cl_event *") PointerBuffer event_wait_list, @NativeType("cl_event *") PointerBuffer event) { if (CHECKS) { checkSafe(event, 1); } return nclEnqueueMigrateMemObjectEXT(command_queue, mem_objects.remaining(), memAddress(mem_objects), flags, remainingSafe(event_wait_list), memAddressSafe(event_wait_list), memAddressSafe(event)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy