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
For some reason the OpenCL headers only define a struct member if ANSI strict mode is disabled or using clang, see here and here.
LLVM_ENABLE_PEDANTIC is on by default so ANSI strict mode is enabled (through -pedantic), so the struct member isn't defined so we get a compile error when trying to access it in the UR plugin.
So the build fails with gcc. I added a workaround in #19649.