From 962b99f9252c2469075708df864442e9d7b5092c Mon Sep 17 00:00:00 2001 From: Shadi Dashmiz <94885391+shadidashmiz@users.noreply.github.com> Date: Wed, 26 Nov 2025 15:11:52 -0500 Subject: [PATCH] SWDEV-567514: Remove default stream wait (#1977) - when virtual map command is called - can create deadlock Signed-off-by: sdashmiz --- projects/clr/hipamd/src/hip_mempool_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/clr/hipamd/src/hip_mempool_impl.hpp b/projects/clr/hipamd/src/hip_mempool_impl.hpp index 5c51a02912..03b3b3ff05 100644 --- a/projects/clr/hipamd/src/hip_mempool_impl.hpp +++ b/projects/clr/hipamd/src/hip_mempool_impl.hpp @@ -215,7 +215,7 @@ class MemoryPool : public amd::ReferenceCountedObject, amd::VmHeapArray { MemoryPool(hip::Device* device, const hipMemPoolProps* props = nullptr, bool phys_mem = false) : VmHeapArray(device->devices()[0], - [this]() -> amd::HostQueue& { return *device_->NullStream(); }), + [this]() -> amd::HostQueue& { return *device_->NullStream(false); }), busy_heap_(device, *this), free_heap_(device, *this), lock_pool_ops_(true),