Interface SVMFreeFunction
public interface SVMFreeFunction
Emulation of a function pointer that may be passed to the
CL.clEnqueueSVMFree(cl_command_queue, int, Pointer[], SVMFreeFunction, Object, int, cl_event[], cl_event) method- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidfunction(cl_command_queue queue, int num_svm_pointers, Pointer[] svm_pointers, Object user_data) The function that will be called
-
Method Details
-
function
void function(cl_command_queue queue, int num_svm_pointers, Pointer[] svm_pointers, Object user_data) The function that will be called- Parameters:
queue- The command queuenum_svm_pointers- The number of pointerssvm_pointers- The pointersuser_data- The user data
-