Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SYCL][Graph] Add support for fill and memset nodes in graphs #11472

Merged
merged 30 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d314fde
[SYCL][Graph] Add support for fill and memset nodes in graphs
Bensuo Aug 29, 2023
254ade7
[SYCL][Graph] Add missing fill stubs and abi symbol checks (#315)
Bensuo Aug 30, 2023
bd096bb
Fix buffer_fill test, rework new node operator= checks
Bensuo Oct 9, 2023
3e6d321
Adds missing instructions for storing SyncPoint in events returned by…
mfrancepillois Oct 31, 2023
f51fc35
Updates tests
mfrancepillois Dec 4, 2023
4a1b0cb
clang-format
mfrancepillois Dec 4, 2023
d95596d
clang-format
mfrancepillois Dec 4, 2023
7fa384a
Merge branch 'sycl' into ben/graph-fill-memset
mfrancepillois Dec 4, 2023
0ecb9e3
Clang-format
EwanC Dec 5, 2023
f5d2a95
Adds OpenCL limitation
mfrancepillois Dec 5, 2023
d129579
Update sycl/doc/design/CommandGraph.md
mfrancepillois Dec 6, 2023
44cb34c
Moves OpenCL stubs to UR
mfrancepillois Dec 6, 2023
0905f2b
Merge branch 'sycl' into ben/graph-fill-memset
mfrancepillois Dec 6, 2023
b74eba0
Update sycl/test-e2e/Graph/Explicit/usm_memset.cpp
mfrancepillois Dec 7, 2023
6918b83
Update sycl/test-e2e/Graph/Explicit/buffer_fill.cpp
mfrancepillois Dec 7, 2023
e8c3407
Update sycl/test-e2e/Graph/RecordReplay/usm_memset.cpp
mfrancepillois Dec 7, 2023
aa28d33
Update sycl/test-e2e/Graph/RecordReplay/buffer_fill.cpp
mfrancepillois Dec 7, 2023
901fcb4
Merge branch 'sycl' into ben/graph-fill-memset
EwanC Jan 3, 2024
cb6c5c2
Fix clang-format and increment PI minor version
EwanC Jan 4, 2024
602ffe7
Revert formatting change
EwanC Jan 4, 2024
b6cbf83
Merge branch 'sycl' into ben/graph-fill-memset
EwanC Jan 4, 2024
246af5e
Update tests
EwanC Jan 4, 2024
1441e22
another clang-format attempt
EwanC Jan 4, 2024
7b91621
Merge branch 'sycl' into ben/graph-fill-memset
EwanC Jan 5, 2024
e01b237
Use old formatting style
EwanC Jan 5, 2024
dfb6968
Merge branch 'sycl' into ben/graph-fill-memset
EwanC Jan 9, 2024
a7ad2df
Address PR review feedback
EwanC Jan 9, 2024
ace26ed
Use new clang-formatting
EwanC Jan 9, 2024
4cae6f2
Use `FileCheck --implicit-check-not=LEAK`
EwanC Jan 9, 2024
4283c99
Merge branch 'sycl' into ben/graph-fill-memset
EwanC Jan 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions sycl/doc/design/CommandGraph.md
EwanC marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,14 @@ with the following entry-points:
| `urCommandBufferFinalizeExp` | No more commands can be appended, makes command-buffer ready to enqueue on a command-queue. |
| `urCommandBufferAppendKernelLaunchExp` | Append a kernel execution command to command-buffer. |
| `urCommandBufferAppendUSMMemcpyExp` | Append a USM memcpy command to the command-buffer. |
| `urCommandBufferAppendUSMFillExp` | Append a USM fill command to the command-buffer. |
EwanC marked this conversation as resolved.
Show resolved Hide resolved
| `urCommandBufferAppendMemBufferCopyExp` | Append a mem buffer copy command to the command-buffer. |
| `urCommandBufferAppendMemBufferWriteExp` | Append a memory write command to a command-buffer object. |
| `urCommandBufferAppendMemBufferReadExp` | Append a memory read command to a command-buffer object. |
| `urCommandBufferAppendMemBufferCopyRectExp` | Append a rectangular memory copy command to a command-buffer object. |
| `urCommandBufferAppendMemBufferWriteRectExp` | Append a rectangular memory write command to a command-buffer object. |
| `urCommandBufferAppendMemBufferReadRectExp` | Append a rectangular memory read command to a command-buffer object. |
| `urCommandBufferAppendMemBufferFillExp` | Append a memory fill command to a command-buffer object. |
| `urCommandBufferEnqueueExp` | Submit command-buffer to a command-queue for execution. |

See the [UR EXP-COMMAND-BUFFER](https://oneapi-src.github.io/unified-runtime/core/EXP-COMMAND-BUFFER.html)
Expand Down Expand Up @@ -340,6 +342,8 @@ The types of commands which are unsupported, and lead to this exception are:
This corresponds to a memory buffer write command.
* `handler::copy(src, dest)` or `handler::memcpy(dest, src)` - Where both `src` and
`dest` are USM pointers. This corresponds to a USM copy command.
* `handler::memset(ptr, value, numBytes)` - This corresponds to a USM memory
fill command.

Note that `handler::copy(src, dest)` where both `src` and `dest` are an accessor
is supported, as a memory buffer copy command exists in the OpenCL extension.
Expand Down
2 changes: 2 additions & 0 deletions sycl/include/sycl/detail/pi.def
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ _PI_API(piextCommandBufferMemBufferWrite)
_PI_API(piextCommandBufferMemBufferWriteRect)
_PI_API(piextCommandBufferMemBufferRead)
_PI_API(piextCommandBufferMemBufferReadRect)
_PI_API(piextCommandBufferMemBufferFill)
_PI_API(piextCommandBufferFillUSM)
_PI_API(piextEnqueueCommandBuffer)

_PI_API(piextUSMPitchedAlloc)
Expand Down
44 changes: 41 additions & 3 deletions sycl/include/sycl/detail/pi.h
Original file line number Diff line number Diff line change
Expand Up @@ -2417,7 +2417,7 @@ __SYCL_EXPORT pi_result piextCommandBufferMemBufferReadRect(
pi_buff_rect_offset buffer_offset, pi_buff_rect_offset host_offset,
pi_buff_rect_region region, size_t buffer_row_pitch,
size_t buffer_slice_pitch, size_t host_row_pitch, size_t host_slice_pitch,
void *ptr, pi_uint32 num_events_in_wait_list,
void *ptr, pi_uint32 num_sync_points_in_wait_list,
const pi_ext_sync_point *sync_point_wait_list,
pi_ext_sync_point *sync_point);

Expand All @@ -2434,7 +2434,7 @@ __SYCL_EXPORT pi_result piextCommandBufferMemBufferReadRect(
/// \param sync_point The sync_point associated with this memory operation.
__SYCL_EXPORT pi_result piextCommandBufferMemBufferWrite(
pi_ext_command_buffer command_buffer, pi_mem buffer, size_t offset,
size_t size, const void *ptr, pi_uint32 num_events_in_wait_list,
size_t size, const void *ptr, pi_uint32 num_sync_points_in_wait_list,
const pi_ext_sync_point *sync_point_wait_list,
pi_ext_sync_point *sync_point);

Expand All @@ -2459,10 +2459,48 @@ __SYCL_EXPORT pi_result piextCommandBufferMemBufferWriteRect(
pi_buff_rect_offset buffer_offset, pi_buff_rect_offset host_offset,
pi_buff_rect_region region, size_t buffer_row_pitch,
size_t buffer_slice_pitch, size_t host_row_pitch, size_t host_slice_pitch,
const void *ptr, pi_uint32 num_events_in_wait_list,
const void *ptr, pi_uint32 num_sync_points_in_wait_list,
const pi_ext_sync_point *sync_point_wait_list,
pi_ext_sync_point *sync_point);

/// API to append a mem buffer fill command to the command-buffer.
/// \param command_buffer The command-buffer to append onto.
/// \param buffer is the location to fill the data
EwanC marked this conversation as resolved.
Show resolved Hide resolved
/// \param pattern pointer to the pattern to fill the buffer with.
/// \param pattern_size size of the pattern in bytes.
/// \param offset Offset into the buffer to fill from.
/// \param size fill size in bytes.
/// \param num_sync_points_in_wait_list The number of sync points in the
/// provided wait list.
/// \param sync_point_wait_list A list of sync points that this command must
/// wait on.
/// \param sync_point The sync_point associated with this memory operation.
__SYCL_EXPORT pi_result
piextCommandBufferMemBufferFill(pi_ext_command_buffer command_buffer,
pi_mem buffer, const void *pattern,
size_t pattern_size, size_t offset, size_t size,
pi_uint32 num_sync_points_in_wait_list,
const pi_ext_sync_point *sync_point_wait_list,
pi_ext_sync_point *sync_point);

/// API to append a USM fill command to the command-buffer.
/// \param command_buffer The command-buffer to append onto.
/// \param ptr pointer to the USM allocation to fill.
/// \param pattern pointer to the pattern to fill ptr with.
/// \param pattern_size size of the pattern in bytes.
/// \param size fill size in bytes.
/// \param num_sync_points_in_wait_list The number of sync points in the
/// provided wait list.
/// \param sync_point_wait_list A list of sync points that this command must
/// wait on.
/// \param sync_point The sync_point associated with this memory operation.
__SYCL_EXPORT pi_result
piextCommandBufferFillUSM(pi_ext_command_buffer command_buffer, void *ptr,
const void *pattern, size_t pattern_size, size_t size,
pi_uint32 num_sync_points_in_wait_list,
const pi_ext_sync_point *sync_point_wait_list,
pi_ext_sync_point *sync_point);

/// API to submit the command-buffer to queue for execution, returns an error if
/// the command-buffer is not finalized or another instance of the same
/// command-buffer is currently executing.
Expand Down
21 changes: 21 additions & 0 deletions sycl/plugins/cuda/pi_cuda.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1137,6 +1137,27 @@ pi_result piextCommandBufferMemBufferWriteRect(
NumSyncPointsInWaitList, SyncPointWaitList, SyncPoint);
}

pi_result piextCommandBufferMemBufferFill(
pi_ext_command_buffer CommandBuffer, pi_mem Buffer, const void *Pattern,
size_t PatternSize, size_t Offset, size_t Size,
pi_uint32 NumSyncPointsInWaitList,
const pi_ext_sync_point *SyncPointWaitList, pi_ext_sync_point *SyncPoint) {
return pi2ur::piextCommandBufferMemBufferFill(
CommandBuffer, Buffer, Pattern, PatternSize, Offset, Size,
NumSyncPointsInWaitList, SyncPointWaitList, SyncPoint);
}

pi_result piextCommandBufferFillUSM(pi_ext_command_buffer CommandBuffer,
void *Ptr, const void *Pattern,
size_t PatternSize, size_t Size,
pi_uint32 NumSyncPointsInWaitList,
const pi_ext_sync_point *SyncPointWaitList,
pi_ext_sync_point *SyncPoint) {
return pi2ur::piextCommandBufferFillUSM(
CommandBuffer, Ptr, Pattern, PatternSize, Size, NumSyncPointsInWaitList,
SyncPointWaitList, SyncPoint);
}

pi_result piextEnqueueCommandBuffer(pi_ext_command_buffer CommandBuffer,
pi_queue Queue,
pi_uint32 NumEventsInWaitList,
Expand Down
21 changes: 21 additions & 0 deletions sycl/plugins/hip/pi_hip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1145,6 +1145,27 @@ pi_result piextCommandBufferMemBufferWriteRect(
NumSyncPointsInWaitList, SyncPointWaitList, SyncPoint);
}

pi_result piextCommandBufferMemBufferFill(
pi_ext_command_buffer CommandBuffer, pi_mem Buffer, const void *Pattern,
size_t PatternSize, size_t Offset, size_t Size,
pi_uint32 NumSyncPointsInWaitList,
const pi_ext_sync_point *SyncPointWaitList, pi_ext_sync_point *SyncPoint) {
return pi2ur::piextCommandBufferMemBufferFill(
CommandBuffer, Buffer, Pattern, PatternSize, Offset, Size,
NumSyncPointsInWaitList, SyncPointWaitList, SyncPoint);
}

pi_result piextCommandBufferFillUSM(pi_ext_command_buffer CommandBuffer,
void *Ptr, const void *Pattern,
size_t PatternSize, size_t Size,
pi_uint32 NumSyncPointsInWaitList,
const pi_ext_sync_point *SyncPointWaitList,
pi_ext_sync_point *SyncPoint) {
return pi2ur::piextCommandBufferFillUSM(
CommandBuffer, Ptr, Pattern, PatternSize, Size, NumSyncPointsInWaitList,
SyncPointWaitList, SyncPoint);
}

pi_result piextEnqueueCommandBuffer(pi_ext_command_buffer CommandBuffer,
pi_queue Queue,
pi_uint32 NumEventsInWaitList,
Expand Down
21 changes: 21 additions & 0 deletions sycl/plugins/level_zero/pi_level_zero.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1304,6 +1304,27 @@ pi_result piextCommandBufferMemBufferWriteRect(
NumSyncPointsInWaitList, SyncPointWaitList, SyncPoint);
}

pi_result piextCommandBufferMemBufferFill(
pi_ext_command_buffer CommandBuffer, pi_mem Buffer, const void *Pattern,
size_t PatternSize, size_t Offset, size_t Size,
pi_uint32 NumSyncPointsInWaitList,
const pi_ext_sync_point *SyncPointWaitList, pi_ext_sync_point *SyncPoint) {
return pi2ur::piextCommandBufferMemBufferFill(
CommandBuffer, Buffer, Pattern, PatternSize, Offset, Size,
NumSyncPointsInWaitList, SyncPointWaitList, SyncPoint);
}

pi_result piextCommandBufferFillUSM(pi_ext_command_buffer CommandBuffer,
void *Ptr, const void *Pattern,
size_t PatternSize, size_t Size,
pi_uint32 NumSyncPointsInWaitList,
const pi_ext_sync_point *SyncPointWaitList,
pi_ext_sync_point *SyncPoint) {
return pi2ur::piextCommandBufferFillUSM(
CommandBuffer, Ptr, Pattern, PatternSize, Size, NumSyncPointsInWaitList,
SyncPointWaitList, SyncPoint);
}

pi_result piextEnqueueCommandBuffer(pi_ext_command_buffer CommandBuffer,
pi_queue Queue,
pi_uint32 NumEventsInWaitList,
Expand Down
21 changes: 21 additions & 0 deletions sycl/plugins/opencl/pi_opencl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1081,6 +1081,27 @@ pi_result piextCommandBufferMemBufferWriteRect(
NumSyncPointsInWaitList, SyncPointWaitList, SyncPoint);
}

pi_result piextCommandBufferMemBufferFill(
pi_ext_command_buffer CommandBuffer, pi_mem Buffer, const void *Pattern,
size_t PatternSize, size_t Offset, size_t Size,
pi_uint32 NumSyncPointsInWaitList,
const pi_ext_sync_point *SyncPointWaitList, pi_ext_sync_point *SyncPoint) {
return pi2ur::piextCommandBufferMemBufferFill(
CommandBuffer, Buffer, Pattern, PatternSize, Offset, Size,
NumSyncPointsInWaitList, SyncPointWaitList, SyncPoint);
}

pi_result piextCommandBufferFillUSM(pi_ext_command_buffer CommandBuffer,
void *Ptr, const void *Pattern,
size_t PatternSize, size_t Size,
pi_uint32 NumSyncPointsInWaitList,
const pi_ext_sync_point *SyncPointWaitList,
pi_ext_sync_point *SyncPoint) {
return pi2ur::piextCommandBufferFillUSM(
CommandBuffer, Ptr, Pattern, PatternSize, Size, NumSyncPointsInWaitList,
SyncPointWaitList, SyncPoint);
}

pi_result piextEnqueueCommandBuffer(pi_ext_command_buffer CommandBuffer,
pi_queue Queue,
pi_uint32 NumEventsInWaitList,
Expand Down
10 changes: 2 additions & 8 deletions sycl/plugins/unified_runtime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,8 @@ endif()
if(SYCL_PI_UR_USE_FETCH_CONTENT)
include(FetchContent)

set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git")
# commit 67e7da33596c597ef79d940223d372583a78bb2b
# Merge: 9b1fb4e9 f0e0be24
# Author: Kenneth Benzie (Benie) <[email protected]>
# Date: Tue Dec 5 10:46:45 2023 +0000
# Merge pull request #999 from hdelan/hip-adapter-multi-dev-ctx
# [HIP] Hip adapter multi dev ctx
set(UNIFIED_RUNTIME_TAG 67e7da33596c597ef79d940223d372583a78bb2b)
set(UNIFIED_RUNTIME_REPO "https://github.com/bensuo/unified-runtime.git")
set(UNIFIED_RUNTIME_TAG cmdbuf-fill-memset-l0)

if(SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO)
set(UNIFIED_RUNTIME_REPO "${SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO}")
Expand Down
31 changes: 31 additions & 0 deletions sycl/plugins/unified_runtime/pi2ur.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4521,6 +4521,37 @@ inline pi_result piextCommandBufferMemBufferWrite(
return PI_SUCCESS;
}

inline pi_result piextCommandBufferMemBufferFill(
pi_ext_command_buffer CommandBuffer, pi_mem Buffer, const void *Pattern,
size_t PatternSize, size_t Offset, size_t Size,
pi_uint32 NumSyncPointsInWaitList,
const pi_ext_sync_point *SyncPointWaitList, pi_ext_sync_point *SyncPoint) {
PI_ASSERT(Buffer, PI_ERROR_INVALID_MEM_OBJECT);

ur_exp_command_buffer_handle_t UrCommandBuffer =
reinterpret_cast<ur_exp_command_buffer_handle_t>(CommandBuffer);
ur_mem_handle_t UrBuffer = reinterpret_cast<ur_mem_handle_t>(Buffer);

HANDLE_ERRORS(urCommandBufferAppendMemBufferFillExp(
UrCommandBuffer, UrBuffer, Pattern, PatternSize, Offset, Size,
NumSyncPointsInWaitList, SyncPointWaitList, SyncPoint));
return PI_SUCCESS;
}

inline pi_result piextCommandBufferFillUSM(
pi_ext_command_buffer CommandBuffer, void *Ptr, const void *Pattern,
size_t PatternSize, size_t Size, pi_uint32 NumSyncPointsInWaitList,
const pi_ext_sync_point *SyncPointWaitList, pi_ext_sync_point *SyncPoint) {

ur_exp_command_buffer_handle_t UrCommandBuffer =
reinterpret_cast<ur_exp_command_buffer_handle_t>(CommandBuffer);

HANDLE_ERRORS(urCommandBufferAppendUSMFillExp(
UrCommandBuffer, Ptr, Pattern, PatternSize, Size, NumSyncPointsInWaitList,
SyncPointWaitList, SyncPoint));
return PI_SUCCESS;
}

inline pi_result piextEnqueueCommandBuffer(pi_ext_command_buffer CommandBuffer,
pi_queue Queue,
pi_uint32 NumEventsInWaitList,
Expand Down
21 changes: 21 additions & 0 deletions sycl/plugins/unified_runtime/pi_unified_runtime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1102,6 +1102,27 @@ pi_result piextCommandBufferMemBufferWriteRect(
NumSyncPointsInWaitList, SyncPointWaitList, SyncPoint);
}

pi_result piextCommandBufferMemBufferFill(
pi_ext_command_buffer CommandBuffer, pi_mem Buffer, const void *Pattern,
size_t PatternSize, size_t Offset, size_t Size,
pi_uint32 NumSyncPointsInWaitList,
const pi_ext_sync_point *SyncPointWaitList, pi_ext_sync_point *SyncPoint) {
return pi2ur::piextCommandBufferMemBufferFill(
CommandBuffer, Buffer, Pattern, PatternSize, Offset, Size,
NumSyncPointsInWaitList, SyncPointWaitList, SyncPoint);
}

pi_result piextCommandBufferFillUSM(pi_ext_command_buffer CommandBuffer,
void *Ptr, const void *Pattern,
size_t PatternSize, size_t Size,
pi_uint32 NumSyncPointsInWaitList,
const pi_ext_sync_point *SyncPointWaitList,
pi_ext_sync_point *SyncPoint) {
return pi2ur::piextCommandBufferFillUSM(
CommandBuffer, Ptr, Pattern, PatternSize, Size, NumSyncPointsInWaitList,
SyncPointWaitList, SyncPoint);
}

pi_result piextEnqueueCommandBuffer(pi_ext_command_buffer CommandBuffer,
pi_queue Queue,
pi_uint32 NumEventsInWaitList,
Expand Down
44 changes: 44 additions & 0 deletions sycl/source/detail/memory_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1666,6 +1666,50 @@ void MemoryManager::ext_oneapi_copy_usm_cmd_buffer(
}
}

void MemoryManager::ext_oneapi_fill_usm_cmd_buffer(
sycl::detail::ContextImplPtr Context,
sycl::detail::pi::PiExtCommandBuffer CommandBuffer, void *DstMem,
size_t Len, int Pattern, std::vector<sycl::detail::pi::PiExtSyncPoint> Deps,
sycl::detail::pi::PiExtSyncPoint *OutSyncPoint) {

if (!DstMem)
throw runtime_error("NULL pointer argument in memory fill operation.",
PI_ERROR_INVALID_VALUE);

const PluginPtr &Plugin = Context->getPlugin();
// Pattern is interpreted as an unsigned char so pattern size is always 1.
size_t PatternSize = 1;
Plugin->call<PiApiKind::piextCommandBufferFillUSM>(
CommandBuffer, DstMem, &Pattern, PatternSize, Len, Deps.size(),
Deps.data(), OutSyncPoint);
}

void MemoryManager::ext_oneapi_fill_cmd_buffer(
sycl::detail::ContextImplPtr Context,
sycl::detail::pi::PiExtCommandBuffer CommandBuffer, SYCLMemObjI *SYCLMemObj,
void *Mem, size_t PatternSize, const char *Pattern, unsigned int Dim,
sycl::range<3> Size, sycl::range<3> AccessRange, sycl::id<3> AccessOffset,
unsigned int ElementSize,
std::vector<sycl::detail::pi::PiExtSyncPoint> Deps,
sycl::detail::pi::PiExtSyncPoint *OutSyncPoint) {
assert(SYCLMemObj && "The SYCLMemObj is nullptr");

const PluginPtr &Plugin = Context->getPlugin();
if (SYCLMemObj->getType() != detail::SYCLMemObjI::MemObjType::Buffer) {
throw sycl::exception(sycl::make_error_code(sycl::errc::invalid),
"Images are not supported in Graphs");
}
if (Dim <= 1) {
Plugin->call<PiApiKind::piextCommandBufferMemBufferFill>(
CommandBuffer, pi::cast<sycl::detail::pi::PiMem>(Mem), Pattern,
PatternSize, AccessOffset[0] * ElementSize,
AccessRange[0] * ElementSize, Deps.size(), Deps.data(), OutSyncPoint);
return;
}
throw runtime_error("Not supported configuration of fill requested",
PI_ERROR_INVALID_OPERATION);
}

void MemoryManager::copy_image_bindless(
void *Src, QueueImplPtr Queue, void *Dst,
const sycl::detail::pi::PiMemImageDesc &Desc,
Expand Down
18 changes: 18 additions & 0 deletions sycl/source/detail/memory_manager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,24 @@ class __SYCL_EXPORT MemoryManager {
void *DstMem, std::vector<sycl::detail::pi::PiExtSyncPoint> Deps,
sycl::detail::pi::PiExtSyncPoint *OutSyncPoint);

static void ext_oneapi_fill_usm_cmd_buffer(
sycl::detail::ContextImplPtr Context,
sycl::detail::pi::PiExtCommandBuffer CommandBuffer, void *DstMem,
size_t Len, int Pattern,
std::vector<sycl::detail::pi::PiExtSyncPoint> Deps,
sycl::detail::pi::PiExtSyncPoint *OutSyncPoint);

static void
ext_oneapi_fill_cmd_buffer(sycl::detail::ContextImplPtr Context,
sycl::detail::pi::PiExtCommandBuffer CommandBuffer,
SYCLMemObjI *SYCLMemObj, void *Mem,
size_t PatternSize, const char *Pattern,
unsigned int Dim, sycl::range<3> Size,
sycl::range<3> AccessRange,
sycl::id<3> AccessOffset, unsigned int ElementSize,
std::vector<sycl::detail::pi::PiExtSyncPoint> Deps,
sycl::detail::pi::PiExtSyncPoint *OutSyncPoint);

static void
copy_image_bindless(void *Src, QueueImplPtr Queue, void *Dst,
const sycl::detail::pi::PiMemImageDesc &Desc,
Expand Down
Loading