diff --git a/docs/extended_api/asynchronous_operations_library/memcpy_async.md b/docs/extended_api/asynchronous_operations_library/memcpy_async.md index 04c7666f40..814ab4208d 100644 --- a/docs/extended_api/asynchronous_operations_library/memcpy_async.md +++ b/docs/extended_api/asynchronous_operations_library/memcpy_async.md @@ -8,21 +8,21 @@ parent: Asynchronous operations library Defined in header [``](../../api/synchronization_library/barrier.md) ```c++ -template -void memcpy_async(void * destination, void const * source, Shape size, barrier & barrier); // (1) +template +void memcpy_async(void * destination, void const * source, Shape size, barrier & barrier); // (1) -template -void memcpy_async(Group const & group, void * destination, void const * source, Shape size, barrier & barrier); // (2) +template +void memcpy_async(Group const & group, void * destination, void const * source, Shape size, barrier & barrier); // (2) ``` Defined in header [``](../headers/pipeline.md) ```c++ template -void memcpy_async(void * destination, void const * source, Shape size, pipeline & pipeline); // (3) +void memcpy_async(void * destination, void const * source, Shape size, pipeline & pipeline); // (3) template -void memcpy_async(Group const & group, void * destination, void const * source, Shape size, pipeline & pipeline); // (4) +void memcpy_async(Group const & group, void * destination, void const * source, Shape size, pipeline & pipeline); // (4) ``` Asynchronously copies `size` bytes from the memory location pointed to by `source` to the memory location pointed to by `destination`.