You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Debugged and found out that during initialization
zeDdiTableInit() calls zeGetRTASBuilderExpProcAddrTable() and
it fails because GET_FUNCTION_PTR( drv.handle, "zeGetRTASBuilderExpProcAddrTable") ) is always null.
Any idea?
The text was updated successfully, but these errors were encountered:
The latest GPU driver available for your hardware does not implement zeGetRTASBuilderExpProcAddrTable, which suggests you're using a new loader with an old driver. I think it would be alright to allow certain function pointer lookups to fail to maintain backwards compatibility with such drivers.
Make the results of certain Get*ProcAddrTable calls in ze_libddi.cpp
ignored as not all drivers will implement these functions. These
functions populate different sections of DDI tables in the lib
component.
Fixesoneapi-src#196
Relates to VLCLJ-2339
Signed-off-by: Lisanna Dettwyler <[email protected]>
Make the results of certain Get*ProcAddrTable calls in ze_libddi.cpp
ignored as not all drivers will implement these functions. These
functions populate different sections of DDI tables in the lib
component.
Fixesoneapi-src#196
Relates to VLCLJ-2339
Signed-off-by: Lisanna Dettwyler <[email protected]>
I'm trying to run the zello_world example on Windows 10 and it fails:
I have Intel HD Graphics 630 (Kaby-Lake-H-GT2, Gen. 9.5) with the newest intel drivers.
(31.0.101.2130). Its supported according to the list (https://github.com/intel/compute-runtime?tab=readme-ov-file#supported-platforms)
What is exactly missing or in wrong location?
edit:
Debugged and found out that during initialization
zeDdiTableInit() calls zeGetRTASBuilderExpProcAddrTable() and
it fails because
GET_FUNCTION_PTR( drv.handle, "zeGetRTASBuilderExpProcAddrTable") )
is always null.Any idea?
The text was updated successfully, but these errors were encountered: