SWDEV-523281 - [clr] Implementation of hipLaunchKernelExC and hipDrvLaunchKernelEx API with support for cooperative launch (#92)

This commit is contained in:
Betigeri, Sourabh
2025-04-03 04:10:05 -07:00
committed by GitHub
parent 8fcaa1ca93
commit 8c6b90996e
7 changed files with 169 additions and 6 deletions
+9
View File
@@ -1868,4 +1868,13 @@ hipError_t hipGraphExecBatchMemOpNodeSetParams(hipGraphExec_t hGraphExec,
}
hipError_t hipEventRecordWithFlags(hipEvent_t event, hipStream_t stream, unsigned int flags) {
return hip::GetHipDispatchTable()->hipEventRecordWithFlags_fn(event, stream, flags);
}
hipError_t hipLaunchKernelExC(const hipLaunchConfig_t* config, const void* fPtr, void** args) {
return hip::GetHipDispatchTable()->hipLaunchKernelExC_fn(config, fPtr, args);
}
hipError_t hipDrvLaunchKernelEx(const HIP_LAUNCH_CONFIG* config, hipFunction_t f, void** kernel,
void** extra) {
return hip::GetHipDispatchTable()->hipDrvLaunchKernelEx_fn(config, f, kernel, extra);
}