-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Testing fails with segmentation fault #265
Comments
For Reference: https://dgpu-docs.intel.com/driver/client/overview.html Two different things happening here: Error code 2013265921d is ZE_RESULT_ERROR_UNINITIALIZED = 0x78000001.. Line 217 in 1c0320b
This indicates the L0 Loader cannot find a working Intel(R) GPU or NPU driver in the system, or those drivers failed to find a valid device to attach to, or are you running on a system with that didn't load a kernel driver. I see you posted the CPUs, both of which have valid HW, so this isn't the issue but are the KMD drivers actually running and is the user mode driver installed. ) First check to see if you've got a User Mode Driver installed and re-test If that doesn't work, check your dmesg to ensure that an Intel GPU is being loaded during boot with an i915.ko (potentially also xekmd.ko if you've got anything newer in a discrete slot). The segfault, clearly shouldn't happen, but is likely a error induced by missing drivers. |
Hmm, interesting. I tried moving to Ubuntu 24.10 since we have been working more on that and have had validation teams check our stack. Here's what I'm seeing now:
|
Showing the same tests as before, I'm seeing more tests run after installing an updated libze-intel-gpu1 version, but there's still the segfaulting and uninitialized issues"
|
Alright, I did 2 things to improve my situation:
After that, the tests seemed to be getting stuck, so I did some debugging and found that it was hanging on a call to zeCommandQueueSynchronize. I made the following change to get past that by reducing the timeout:
From there, I was able to get through all the tests on i9-12900. However, on Core Ultra 7 268V, I'm still getting a test hang here in ze_libapi.cpp during the test
|
OS: Ubuntu 24.04, freshly provisioned
Hardware: i7-1185G7, i9-12900 (reproduced on both)
Level Zero version: 1.19.2
Setup:
I am working to get the level-zero version in Ubuntu bumped to 1.19.2, which is why I'm installing from a PPA
Result:
The text was updated successfully, but these errors were encountered: