Skip to content

Commit

Permalink
[SYCL][ESIMD][E2E] Fix memleak in copyto_copyfrom USM tests (#15392)
Browse files Browse the repository at this point in the history
Easy fix, verified with UR_L0_LEAKS_DEBUG=1

Signed-off-by: Sarnie, Nick <[email protected]>
  • Loading branch information
sarnex committed Sep 16, 2024
1 parent c22d238 commit 99d4cc1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ bool testUSM(queue Q, uint32_t Groups, uint32_t Threads,

bool Passed = verify(Out, Size, N);

sycl::free(In, Q);
sycl::free(Out, Q);

return Passed;
Expand Down

0 comments on commit 99d4cc1

Please sign in to comment.