@@ -42,7 +42,7 @@ DPCTL_C_EXTERN_C_BEGIN
42
42
* @brief Returns the number of arguments for the sycl
43
43
* interoperability kernel.
44
44
*
45
- * @param KRef DPCTLSyclKernelRef pointer to an SYCL
45
+ * @param KRef DPCTLSyclKernelRef pointer to a SYCL
46
46
* interoperability kernel.
47
47
* @return Returns the number of arguments for the interoperability
48
48
* kernel.
@@ -55,7 +55,7 @@ size_t DPCTLKernel_GetNumArgs(__dpctl_keep const DPCTLSyclKernelRef KRef);
55
55
* @brief Deletes the DPCTLSyclKernelRef after casting it to a
56
56
* ``sycl::kernel``.
57
57
*
58
- * @param KRef DPCTLSyclKernelRef pointer to an SYCL
58
+ * @param KRef DPCTLSyclKernelRef pointer to a SYCL
59
59
* interoperability kernel.
60
60
* @ingroup KernelInterface
61
61
*/
@@ -66,10 +66,11 @@ void DPCTLKernel_Delete(__dpctl_take DPCTLSyclKernelRef KRef);
66
66
* !brief Wrapper around
67
67
* `kernel::get_info<info::kernel_device_specific::work_group_size>()`.
68
68
*
69
- * @param KRef DPCTLSyclKernelRef pointer to an SYCL
69
+ * @param KRef DPCTLSyclKernelRef pointer to a SYCL
70
70
* interoperability kernel.
71
71
* @return Returns the maximum number of work-items in a work-group
72
- * that can be used to execute a kernel on a specific device.
72
+ * that can be used to execute a kernel on the device it was
73
+ * built for.
73
74
* @ingroup KernelInterface
74
75
*/
75
76
DPCTL_API
@@ -79,10 +80,10 @@ size_t DPCTLKernel_GetWorkGroupSize(__dpctl_keep const DPCTLSyclKernelRef KRef);
79
80
* !brief Wrapper around
80
81
* `kernel::get_info<info::kernel_device_specific::preferred_work_group_size_multiple>()`.
81
82
*
82
- * @param KRef DPCTLSyclKernelRef pointer to an SYCL
83
+ * @param KRef DPCTLSyclKernelRef pointer to a SYCL
83
84
* interoperability kernel.
84
85
* @return Returns a value, of which work-group size is preferred to be a
85
- * multiple, for executing a kernel on a specific device.
86
+ * multiple, for executing a kernel on the device it was built for .
86
87
* @ingroup KernelInterface
87
88
*/
88
89
DPCTL_API
@@ -93,7 +94,7 @@ size_t DPCTLKernel_GetPreferredWorkGroupSizeMultiple(
93
94
* !brief Wrapper around
94
95
* `kernel::get_info<info::kernel_device_specific::private_mem_size>()`.
95
96
*
96
- * @param KRef DPCTLSyclKernelRef pointer to an SYCL
97
+ * @param KRef DPCTLSyclKernelRef pointer to a SYCL
97
98
* interoperability kernel.
98
99
* @return Returns the minimum amount of private memory, in bytes,
99
100
* used by each work-item in the kernel.
0 commit comments