[clang] [Clang][SYCL] Add AOT compilation support for Intel GPUs in clang-sycl-linker (PR #133194)

2025-05-06 Thread Alexey Bader via cfe-commits
bader wrote: > I'm wondering though, is there a reason we can't just use the backend right > now? What do these tools do that running `llc` can't. These tools compile programs in SPIR-V to the format that can be consumed by Intel's OpenCL/Level Zero drivers. `llc` can't do that because there a

[clang] [clang][SYCL] Disable float128 device mode diagnostic (PR #128513)

2025-03-13 Thread Alexey Bader via cfe-commits
@@ -4700,7 +4700,8 @@ void Sema::AddModeAttr(Decl *D, const AttributeCommonInfo &CI, if (NewElemTy.isNull()) { // Only emit diagnostic on host for 128-bit mode attribute -if (!(DestWidth == 128 && getLangOpts().CUDAIsDevice)) +if (!(DestWidth == 128 && +

<    1   2   3