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
Copy file name to clipboardExpand all lines: scripts/core/exp-cooperative-kernels.yml
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -78,9 +78,13 @@ params:
78
78
- type: $x_kernel_handle_t
79
79
name: hKernel
80
80
desc: "[in] handle of the kernel object"
81
-
- type: size_t
82
-
name: localWorkSize
83
-
desc: "[in] number of local work-items that will form a work-group when the kernel is launched"
81
+
- type: uint32_t
82
+
name: workDim
83
+
desc: "[in] number of dimensions, from 1 to 3, to specify the work-group work-items"
84
+
- type: "const size_t*"
85
+
name: pLocalWorkSize
86
+
desc: |
87
+
[in] 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.
84
88
- type: size_t
85
89
name: dynamicSharedMemorySize
86
90
desc: "[in] size of dynamic shared memory, for each work-group, in bytes, that will be used when the kernel is launched"
0 commit comments