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][Bindless][E2E] fix double free in vulkan interop unsampled test #16027

Merged
merged 10 commits into from
Dec 12, 2024
12 changes: 6 additions & 6 deletions sycl/cmake/modules/UnifiedRuntimeTag.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# commit 58e4d76c2ace154c053b51592f2645fc43437646
# Merge: e23a75034bb2 bc5d6a695dc8
# commit 098deca1f9f3b9f3f0563ee823ac424d8db30668
# Merge: 58e4d76c2ace 73ba29bfe9df
# Author: Martin Grant <[email protected]>
# Date: Wed Dec 11 15:14:14 2024 +0000
# Merge pull request #2436 from igchor/umf_params_bump
# [UMF] bump UMF version to v0.10.0 and adjust code
set(UNIFIED_RUNTIME_TAG 58e4d76c2ace154c053b51592f2645fc43437646)
# Date: Wed Dec 11 17:23:43 2024 +0000
# Merge pull request #2299 from cppchedy/chedy/fix-mipmap-leak
# [CUDA][Bindless] Fix memory leak in interop mapping
set(UNIFIED_RUNTIME_TAG 098deca1f9f3b9f3f0563ee823ac424d8db30668)
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ void cleanup_test(sycl::context &ctxt, sycl::device &dev, handles_t handles) {
syclexp::destroy_image_handle(handles.output, dev, ctxt);
syclexp::free_image_mem(handles.input_mem_handle_1,
syclexp::image_type::standard, dev, ctxt);
syclexp::free_image_mem(handles.input_mem_handle_1,
syclexp::free_image_mem(handles.input_mem_handle_2,
syclexp::image_type::standard, dev, ctxt);
syclexp::free_image_mem(handles.output_mem_handle,
syclexp::image_type::standard, dev, ctxt);
Expand Down
Loading