Skip to content

Commit 1e48eb4

Browse files
committed
fix: memcpy mangling
1 parent d6b5d36 commit 1e48eb4

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

libsyclinterface/include/syclinterface/dpctl_sycl_queue_interface.h

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,7 @@ void DPCTLQueue_Wait(__dpctl_keep const DPCTLSyclQueueRef QRef);
292292
* @param QRef An opaque pointer to the ``sycl::queue``.
293293
* @param Dest An USM pointer to the destination memory.
294294
* @param Src An USM pointer to the source memory.
295-
* @param Count A number of bytes to copy. The wrapper binds
296-
* ``sycl::queue::copy`` with ``T=uint8_t`` so the
297-
* SYCL element count matches a byte count.
295+
* @param Count A number of bytes to copy.
298296
* @return An opaque pointer to the ``sycl::event`` returned by the
299297
* ``sycl::queue::memcpy`` function.
300298
* @ingroup QueueInterface
@@ -312,9 +310,7 @@ DPCTLQueue_Memcpy(__dpctl_keep const DPCTLSyclQueueRef QRef,
312310
* @param QRef An opaque pointer to the ``sycl::queue``.
313311
* @param Dest An USM pointer to the destination memory.
314312
* @param Src An USM pointer to the source memory.
315-
* @param Count A number of bytes to copy. The wrapper binds
316-
* ``sycl::queue::copy`` with ``T=uint8_t`` so the
317-
* SYCL element count matches a byte count.
313+
* @param Count A number of bytes to copy.
318314
* @param DepEvents A pointer to array of DPCTLSyclEventRef opaque
319315
* pointers to dependent events.
320316
* @param DepEventsCount A number of dependent events.

0 commit comments

Comments
 (0)