File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
openmp/libomptarget/plugins/amdgpu/impl Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ class KernelArgMD {
58
58
HiddenCompletionAction,
59
59
HiddenMultiGridSyncArg,
60
60
HiddenHostcallBuffer,
61
+ HiddenHeapV1,
61
62
Unknown
62
63
};
63
64
@@ -93,6 +94,7 @@ static const std::map<std::string, KernelArgMD::ValueKind> ArgValueKind = {
93
94
{" hidden_multigrid_sync_arg" ,
94
95
KernelArgMD::ValueKind::HiddenMultiGridSyncArg},
95
96
{" hidden_hostcall_buffer" , KernelArgMD::ValueKind::HiddenHostcallBuffer},
97
+ {" hidden_heap_v1" , KernelArgMD::ValueKind::HiddenHeapV1}
96
98
};
97
99
98
100
namespace core {
@@ -154,6 +156,7 @@ static bool isImplicit(KernelArgMD::ValueKind value_kind) {
154
156
case KernelArgMD::ValueKind::HiddenCompletionAction:
155
157
case KernelArgMD::ValueKind::HiddenMultiGridSyncArg:
156
158
case KernelArgMD::ValueKind::HiddenHostcallBuffer:
159
+ case KernelArgMD::ValueKind::HiddenHeapV1:
157
160
return true ;
158
161
default :
159
162
return false ;
You can’t perform that action at this time.
0 commit comments