Add support for new thread arbitration policies via zeKernelSchedulingHintExp

Related-To: LOCI-2319

Signed-off-by: Vinod Tipparaju <vinod.tipparaju@intel.com>
This commit is contained in:
Vinod Tipparaju
2021-08-02 16:28:38 +05:30
committed by Compute-Runtime-Automation
parent c54152bbbc
commit 37670aeb91
7 changed files with 74 additions and 4 deletions

View File

@@ -227,3 +227,10 @@ zeKernelSetCacheConfig(
ze_cache_config_flags_t flags) {
return L0::Kernel::fromHandle(hKernel)->setCacheConfig(flags);
}
ZE_APIEXPORT ze_result_t ZE_APICALL
zeKernelSchedulingHintExp(
ze_kernel_handle_t hKernel,
ze_scheduling_hint_exp_desc_t *pHint) {
return L0::Kernel::fromHandle(hKernel)->setSchedulingHintExp(pHint);
}