From b19b4eddc7a58a1fd61650b568dd4ef1192655f0 Mon Sep 17 00:00:00 2001 From: Benjamin Welton Date: Wed, 6 Dec 2023 07:55:21 -0800 Subject: [PATCH] Reduce gate capacity further for NAVI3 cards (#277) --- source/lib/rocprofiler-sdk/hsa/queue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/rocprofiler-sdk/hsa/queue.cpp b/source/lib/rocprofiler-sdk/hsa/queue.cpp index 77c7d73a97..17f2cfe2db 100644 --- a/source/lib/rocprofiler-sdk/hsa/queue.cpp +++ b/source/lib/rocprofiler-sdk/hsa/queue.cpp @@ -71,7 +71,7 @@ signal_limiter() { // Limit the maximun number of HSA signals created. // There is a hard limit to the maximum that can exist. - static common::active_capacity_gate _gate(16); + static common::active_capacity_gate _gate(4); return _gate; }