Skip to content

Commit

Permalink
Fix format.
Browse files Browse the repository at this point in the history
Signed-off-by: JackAKirk <[email protected]>
  • Loading branch information
JackAKirk committed Jan 11, 2024
1 parent 7bb7022 commit 31a5db9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/queue/queue_shortcuts_usm.h
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ void test_unified_shared_memory(sycl::queue q, unsigned int element_count) {
constexpr int advice = 0;
sycl::event advise_no_events =
q.mem_advise(ptr, element_count * sizeof(T), advice);
sycl::event advise_single_event = q.mem_advise(
ptr, element_count * sizeof(T), advice, advise_no_events);
sycl::event advise_single_event =
q.mem_advise(ptr, element_count * sizeof(T), advice, advise_no_events);
sycl::event advise_multiple_events =
q.mem_advise(ptr, element_count * sizeof(T), advice,
{advise_no_events, advise_single_event});
Expand Down

0 comments on commit 31a5db9

Please sign in to comment.