From 0d92f6ca9c27cc53b576032b61b47e8be372fec0 Mon Sep 17 00:00:00 2001 From: Hendrik Groove Date: Mon, 21 Oct 2024 23:58:27 +0200 Subject: [PATCH] hipStreamDefault --- src/common/device_helpers.hip.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/device_helpers.hip.h b/src/common/device_helpers.hip.h index 222ea25d2..ed0663383 100644 --- a/src/common/device_helpers.hip.h +++ b/src/common/device_helpers.hip.h @@ -1051,7 +1051,7 @@ inline CUDAStreamView DefaultStream() { #ifdef HIP_API_PER_THREAD_DEFAULT_STREAM return CUDAStreamView{hipStreamPerThread}; #else - return CUDAStreamView{hipStreamLegacy}; + return CUDAStreamView{hipStreamDefault}; #endif }