Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <martin.morrisongrant@codeplay.com>
# 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