C Specification

The cl_mutable_dispatch_exec_info_khr structure sets kernel execution info normally passed using clSetKernelExecInfo, and is defined as:

// Provided by cl_khr_command_buffer_mutable_dispatch
typedef struct cl_mutable_dispatch_exec_info_khr {
    cl_uint        param_name;
    size_t         param_value_size;
    const void*    param_value;
} cl_mutable_dispatch_exec_info_khr;

Members

param_name is of type cl_uint rather than cl_kernel_exec_info so that the extension can be implemented on OpenCL 1.2 where the cl_kernel_exec_info typedef is unavailable.

== Description

See Also

Document Notes

For more information, see the OpenCL Specification

This page is extracted from the OpenCL Specification. Fixes and changes should be made to the Specification, not directly.

Copyright 2014-2025 The Khronos Group Inc.

SPDX-License-Identifier: CC-BY-4.0