From 71bd95ed9efb650115f0fd0319e349a48378f4db Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Fri, 20 Sep 2024 11:00:07 -0400 Subject: [PATCH] hsakmt: Update HSA capabilites with per-queue reset Per-queue reset is now supported and flagged in HSA capabilities. Change-Id: I21e2421da73b9fafae19c903dc3eeeab1f84968d [ROCm/ROCR-Runtime commit: 1a4adaf7bc082bb976ceedcd6acfd32babfe4a70] --- projects/rocr-runtime/libhsakmt/include/hsakmt/hsakmttypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/rocr-runtime/libhsakmt/include/hsakmt/hsakmttypes.h b/projects/rocr-runtime/libhsakmt/include/hsakmt/hsakmttypes.h index 1d419cc975..926bdaea10 100644 --- a/projects/rocr-runtime/libhsakmt/include/hsakmt/hsakmttypes.h +++ b/projects/rocr-runtime/libhsakmt/include/hsakmt/hsakmttypes.h @@ -218,7 +218,7 @@ typedef union unsigned int CoherentHostAccess: 1; // Whether or not device memory can be coherently accessed by the host CPU unsigned int DebugSupportedFirmware : 1; // Indicates if HWS firmware supports GPU debugging unsigned int PreciseALUOperationsSupported : 1; //Indicates if precise ALU operations are supported for GPU debugging - unsigned int Reserved : 1; + unsigned int PerQueueResetSupported : 1; // Indicates per-queue reset supported } ui32; } HSA_CAPABILITY;