Skip to content

Commit 5e10744

Browse files
cppchedyProGTX
andauthored
[SYCL][Bindless][E2E] fix double free in vulkan interop unsampled test (#16027)
* fix double free in vulkan interop unsampled test --------- Co-authored-by: Peter Žužek <[email protected]>
1 parent 28e8416 commit 5e10744

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# commit 58e4d76c2ace154c053b51592f2645fc43437646
2-
# Merge: e23a75034bb2 bc5d6a695dc8
1+
# commit 098deca1f9f3b9f3f0563ee823ac424d8db30668
2+
# Merge: 58e4d76c2ace 73ba29bfe9df
33
# Author: Martin Grant <[email protected]>
4-
# Date: Wed Dec 11 15:14:14 2024 +0000
5-
# Merge pull request #2436 from igchor/umf_params_bump
6-
# [UMF] bump UMF version to v0.10.0 and adjust code
7-
set(UNIFIED_RUNTIME_TAG 58e4d76c2ace154c053b51592f2645fc43437646)
4+
# Date: Wed Dec 11 17:23:43 2024 +0000
5+
# Merge pull request #2299 from cppchedy/chedy/fix-mipmap-leak
6+
# [CUDA][Bindless] Fix memory leak in interop mapping
7+
set(UNIFIED_RUNTIME_TAG 098deca1f9f3b9f3f0563ee823ac424d8db30668)

sycl/test-e2e/bindless_images/vulkan_interop/unsampled_images.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ void cleanup_test(sycl::context &ctxt, sycl::device &dev, handles_t handles) {
148148
syclexp::destroy_image_handle(handles.output, dev, ctxt);
149149
syclexp::free_image_mem(handles.input_mem_handle_1,
150150
syclexp::image_type::standard, dev, ctxt);
151-
syclexp::free_image_mem(handles.input_mem_handle_1,
151+
syclexp::free_image_mem(handles.input_mem_handle_2,
152152
syclexp::image_type::standard, dev, ctxt);
153153
syclexp::free_image_mem(handles.output_mem_handle,
154154
syclexp::image_type::standard, dev, ctxt);

0 commit comments

Comments
 (0)