You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
desc: "[in] dimensions of the cluster (units of work-group) (x, y, z). Each value must be a divisor of the corresponding global work-size dimension (in units of work-group)."
43
+
tag: $X_EXP_LAUNCH_PROPERTY_ID_CLUSTER_DIMENSION
44
44
- type: int
45
45
name: cooperative
46
46
desc: "[in] non-zero value indicates a cooperative kernel"
desc: "Launch kernel with custom Launch attributes"
65
+
desc: "Launch kernel with custom launch properties"
66
66
class: $xEnqueue
67
67
name: KernelLaunchCustomExp
68
68
ordinal: "0"
69
69
analogue:
70
70
- "**cuLaunchKernelEx**"
71
71
details:
72
-
- "Launches the kernel using the specified launch attributes"
73
-
- "If numAttrsInLaunchAttrList == 0 then a regular kernel launch is used: `urEnqueueKernelLaunch`"
72
+
- "Launches the kernel using the specified launch properties"
73
+
- "If numPropsInLaunchPropList == 0 then a regular kernel launch is used: `urEnqueueKernelLaunch`"
74
74
- "Consult the appropriate adapter driver documentation for details of adapter specific behavior and native error codes that may be returned."
75
75
params:
76
76
- type: $x_queue_handle_t
@@ -89,11 +89,11 @@ params:
89
89
name: pLocalWorkSize
90
90
desc: "[in][optional] pointer to an array of workDim unsigned values that specify the number of local work-items forming a work-group that will execute the kernel function. If nullptr, the runtime implementation will choose the work-group size."
91
91
- type: uint32_t
92
-
name: numAttrsInLaunchAttrList
93
-
desc: "[in] size of the launch attr list"
94
-
- type: const $x_exp_launch_attribute_t*
95
-
name: launchAttrList
96
-
desc: "[in][range(0, numAttrsInLaunchAttrList)] pointer to a list of launch attributes"
92
+
name: numPropsInLaunchPropList
93
+
desc: "[in] size of the launch prop list"
94
+
- type: const $x_exp_launch_property_t*
95
+
name: launchPropList
96
+
desc: "[in][range(0, numPropsInLaunchPropList)] pointer to a list of launch properties"
0 commit comments