SWDEV-308644 - merge roc blit kernels

Change-Id: I378e511959fe17c03fa45066022e9670a4d181f0


[ROCm/clr commit: f5c9ad5b1d]
This commit is contained in:
Julia Jiang
2021-11-17 18:36:08 -05:00
committed by Julia Jiang
parent 4d011fd9ae
commit ea2741f631
8 changed files with 29 additions and 58 deletions
+17
View File
@@ -39,7 +39,24 @@ const char* rocBlitLinearSourceCode = BLIT_KERNEL(
ulong value, ulong flags, ulong mask) {
__amd_streamOpsWait(ptrInt, ptrUlong, value, flags, mask);
}
);
const char* SchedulerSourceCode = BLIT_KERNEL(
extern void __amd_scheduler_rocm(__global void*);
__kernel void __amd_rocclr_scheduler(__global void* params) {
__amd_scheduler_rocm(params);
}
);
const char* GwsInitSourceCode = BLIT_KERNEL(
extern void __ockl_gws_init(uint nwm1, uint rid);
__kernel void __amd_rocclr_gwsInit(uint value) {
__ockl_gws_init(value, 0);
}
);
} // namespace roc