SWDEV-421025 - Graph Kernel node priority attribute

Change-Id: I6a4f08020e8aa1ff6fb06eabd376aa266b9c04bc
This commit is contained in:
Rahul Manocha
2024-01-10 18:35:23 +00:00
rodzic 0d7381b966
commit f653cd037a
+2
Wyświetl plik
@@ -1277,6 +1277,7 @@ typedef struct hipMemAllocNodeParams {
typedef enum hipKernelNodeAttrID { typedef enum hipKernelNodeAttrID {
hipKernelNodeAttributeAccessPolicyWindow = 1, hipKernelNodeAttributeAccessPolicyWindow = 1,
hipKernelNodeAttributeCooperative = 2, hipKernelNodeAttributeCooperative = 2,
hipLaunchAttributePriority = 8,
} hipKernelNodeAttrID; } hipKernelNodeAttrID;
typedef enum hipAccessProperty { typedef enum hipAccessProperty {
hipAccessPropertyNormal = 0, hipAccessPropertyNormal = 0,
@@ -1293,6 +1294,7 @@ typedef struct hipAccessPolicyWindow {
typedef union hipKernelNodeAttrValue { typedef union hipKernelNodeAttrValue {
hipAccessPolicyWindow accessPolicyWindow; hipAccessPolicyWindow accessPolicyWindow;
int cooperative; int cooperative;
int priority;
} hipKernelNodeAttrValue; } hipKernelNodeAttrValue;
/** /**