SWDEV-421025 - Graph Kernel node priority attribute

Change-Id: I6a4f08020e8aa1ff6fb06eabd376aa266b9c04bc


[ROCm/hip commit: f653cd037a]
This commit is contained in:
Rahul Manocha
2024-01-10 18:35:23 +00:00
والد f9e11b2940
کامیت ee3f99f59f
@@ -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;
/**