SWDEV-421025 - Graph Kernel node priority attribute

Change-Id: I6a4f08020e8aa1ff6fb06eabd376aa266b9c04bc
Tento commit je obsažen v:
Rahul Manocha
2024-01-10 18:35:23 +00:00
rodič 0d7381b966
revize f653cd037a
+2
Zobrazit soubor
@@ -1277,6 +1277,7 @@ typedef struct hipMemAllocNodeParams {
typedef enum hipKernelNodeAttrID {
hipKernelNodeAttributeAccessPolicyWindow = 1,
hipKernelNodeAttributeCooperative = 2,
hipLaunchAttributePriority = 8,
} hipKernelNodeAttrID;
typedef enum hipAccessProperty {
hipAccessPropertyNormal = 0,
@@ -1293,6 +1294,7 @@ typedef struct hipAccessPolicyWindow {
typedef union hipKernelNodeAttrValue {
hipAccessPolicyWindow accessPolicyWindow;
int cooperative;
int priority;
} hipKernelNodeAttrValue;
/**