From 7205b7b71dca6472534f5597c02d78f73549bed2 Mon Sep 17 00:00:00 2001 From: Siu Chi Chan Date: Fri, 30 Aug 2019 15:52:31 -0400 Subject: [PATCH] use a smaller async ops vector size to reduce the number of signals Change-Id: Ib5f1deeeae2082731aa69ab244b52e3b788cecd9 --- lib/hsa/mcwamp_hsa.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hsa/mcwamp_hsa.cpp b/lib/hsa/mcwamp_hsa.cpp index 0148736fe2d..65960355343 100644 --- a/lib/hsa/mcwamp_hsa.cpp +++ b/lib/hsa/mcwamp_hsa.cpp @@ -77,7 +77,7 @@ #define MAX_INFLIGHT_COMMANDS_PER_QUEUE (2*8192) // threshold to clean up finished kernel in HSAQueue.asyncOps -int HCC_ASYNCOPS_SIZE = (2*8192); +int HCC_ASYNCOPS_SIZE = 128; //---