Skip to content

Commit a851f1a

Browse files
authored
[SYCL][Graph] Fix post-commit unused parameter warning (#12426)
Fixes post-commit CI failure seen here https://github.com/intel/llvm/actions/runs/7559355777/job/20582987874 and caused by merging of #11474
1 parent 7e9819d commit a851f1a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

sycl/plugins/unified_runtime/pi2ur.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4636,6 +4636,9 @@ inline pi_result piextCommandBufferAdviseUSM(
46364636
pi_ext_command_buffer CommandBuffer, const void *Ptr, size_t Length,
46374637
pi_mem_advice Advice, pi_uint32 NumSyncPointsInWaitList,
46384638
const pi_ext_sync_point *SyncPointWaitList, pi_ext_sync_point *SyncPoint) {
4639+
// TODO: Handle advice correctly
4640+
(void)Advice;
4641+
46394642
ur_exp_command_buffer_handle_t UrCommandBuffer =
46404643
reinterpret_cast<ur_exp_command_buffer_handle_t>(CommandBuffer);
46414644

0 commit comments

Comments
 (0)