SWDEV-244600 - HIP BLIT code object needs to have reserved symbol name

Change-Id: I8401fea5eab71c0f7414eec0666066d9553a6622


[ROCm/clr commit: 093f7fa3ca]
Cette révision appartient à :
Anusha Godavarthy Surya
2020-07-16 15:17:51 -04:00
Parent e1b0edf35c
révision de10e7e1e6
6 fichiers modifiés avec 29 ajouts et 29 suppressions
+2 -2
Voir le fichier
@@ -27,7 +27,7 @@ const char* SchedulerSourceCode = BLIT_KERNEL(
\n
extern void __amd_scheduler(__global void*, __global void*, uint);
\n
__kernel void scheduler(__global void* queue, __global void* params, uint paramIdx) {
__kernel void __amd_rocclr_scheduler(__global void* queue, __global void* params, uint paramIdx) {
__amd_scheduler(queue, params, paramIdx);
}
\n);
@@ -36,7 +36,7 @@ const char* GwsInitSourceCode = BLIT_KERNEL(
\n
extern void __ockl_gws_init(uint nwm1, uint rid);
\n
__kernel void gwsInit(uint value) {
__kernel void __amd_rocclr_gwsInit(uint value) {
__ockl_gws_init(value, 0);
}
\n);