-
Notifications
You must be signed in to change notification settings - Fork 658
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
build failures on wsl2-ubuntu22.04 #19875
Comments
As far as i can tell its the same error has here: #19662. the easiest fix you can apply for yourself is to remove the cmake rule for building the custom dispatch for cuda. |
Thank you for your reply! I need to use CUDA in my IREE. Is there any other way to enable CUDA? Also, the same failure disappeared when I built the |
I thought we had a bot building CUDA stuff (though nothing running it) so I'm not sure how this isn't catching - maybe we don't have the bot. It should be an easy fix and is unrelated to platform/targets/etc. |
These backends default to disabled, so enable them on this CI config. The backends are already tested in other jobs too. I hoped this might help spot issues like #19875, but it doesn't seem that way. | | Before | After | -- | -- | -- Logs | [logs here](https://github.com/iree-org/iree/actions/runs/13118302608/job/36597989009) | [logs here](https://github.com/iree-org/iree/actions/runs/13118149869/job/36597451528?pr=19883) Number of build targets | 8442 | 8715 Number of `iree-test-deps` targets | 1067 | 1336 Number of tests | 1538 | 1552 ci-exactly: linux_x64_clang
What happened?
Hi, I'm building IREE from the source, and it fails. The backtrace looks like
Steps to reproduce your issue
I'm running on wsl2-ubuntu22.04 and building it with gcc/g++. Their version follows
The tag I'm using is
v3.1.0
, and I use the command to start the building.Then, it would generate the above error when the building almost reaches its end.
What component(s) does this issue relate to?
No response
Version information
Please refer to the above block.
Additional context
I tried to use
gdb
to get some information and found that a member pointerconceptImpl
ofmlir::iree_compiler::PartitionableLoopsInterface
is set as NULL, and then it calls thegetImpl()
method to access this pointer, invokes a methodgetPartitionableLoops
on it, and then exits abnormally. I guess it could be a NULL pointer reference.The text was updated successfully, but these errors were encountered: