SWDEV-523281 - [clr] Implementation of hipLaunchKernelExC and hipDrvLaunchKernelEx API with support for cooperative launch (#92)
This commit is contained in:
committed by
GitHub
parent
8fcaa1ca93
commit
8c6b90996e
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user