@@ -42,7 +42,7 @@ DPCTL_C_EXTERN_C_BEGIN
4242 * @brief Returns the number of arguments for the sycl
4343 * interoperability kernel.
4444 *
45- * @param KRef DPCTLSyclKernelRef pointer to an SYCL
45+ * @param KRef DPCTLSyclKernelRef pointer to a SYCL
4646 * interoperability kernel.
4747 * @return Returns the number of arguments for the interoperability
4848 * kernel.
@@ -55,7 +55,7 @@ size_t DPCTLKernel_GetNumArgs(__dpctl_keep const DPCTLSyclKernelRef KRef);
5555 * @brief Deletes the DPCTLSyclKernelRef after casting it to a
5656 * ``sycl::kernel``.
5757 *
58- * @param KRef DPCTLSyclKernelRef pointer to an SYCL
58+ * @param KRef DPCTLSyclKernelRef pointer to a SYCL
5959 * interoperability kernel.
6060 * @ingroup KernelInterface
6161 */
@@ -66,10 +66,11 @@ void DPCTLKernel_Delete(__dpctl_take DPCTLSyclKernelRef KRef);
6666 * !brief Wrapper around
6767 * `kernel::get_info<info::kernel_device_specific::work_group_size>()`.
6868 *
69- * @param KRef DPCTLSyclKernelRef pointer to an SYCL
69+ * @param KRef DPCTLSyclKernelRef pointer to a SYCL
7070 * interoperability kernel.
7171 * @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.
7374 * @ingroup KernelInterface
7475 */
7576DPCTL_API
@@ -79,10 +80,10 @@ size_t DPCTLKernel_GetWorkGroupSize(__dpctl_keep const DPCTLSyclKernelRef KRef);
7980 * !brief Wrapper around
8081 * `kernel::get_info<info::kernel_device_specific::preferred_work_group_size_multiple>()`.
8182 *
82- * @param KRef DPCTLSyclKernelRef pointer to an SYCL
83+ * @param KRef DPCTLSyclKernelRef pointer to a SYCL
8384 * interoperability kernel.
8485 * @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 .
8687 * @ingroup KernelInterface
8788 */
8889DPCTL_API
@@ -93,7 +94,7 @@ size_t DPCTLKernel_GetPreferredWorkGroupSizeMultiple(
9394 * !brief Wrapper around
9495 * `kernel::get_info<info::kernel_device_specific::private_mem_size>()`.
9596 *
96- * @param KRef DPCTLSyclKernelRef pointer to an SYCL
97+ * @param KRef DPCTLSyclKernelRef pointer to a SYCL
9798 * interoperability kernel.
9899 * @return Returns the minimum amount of private memory, in bytes,
99100 * used by each work-item in the kernel.
0 commit comments