llvm icon indicating copy to clipboard operation
llvm copied to clipboard

Intel staging area for llvm.org contribution. Home for Intel LLVM-based projects.

Results 962 llvm issues
Sort by recently updated
recently updated
newest added

Hello, how do I generate man pages for DPC++ (`clang*` compiler command) and `sycl-ls`?

enhancement
confirmed

### Describe the bug https://github.com/llvm/llvm-project/issues/24952 is causing failures in sycl-ls, so we have to revert https://github.com/intel/llvm/commit/6ac63129b7ef3413c9f86b81e9d33a619f94f911 and apply workarounds in https://github.com/intel/llvm/commit/e676cb09f0b23ec572fefe09aa7882876797eb79. bader left a comment [(intel/llvm#20292)](https://github.com/intel/llvm/pull/20292#issuecomment-3377857991) I suggest we recover...

bug
confirmed

### Describe the bug ### Describe the bug Basic/multi_context_wait.cpp has been observed to fail on Linux NativeCPU in CI (for example https://github.com/intel/llvm/actions/runs/19928913250/job/57137636820) ``` ******************** TEST 'SYCL :: Basic/multi_context_wait.cpp' FAILED ********************...

bug
native-cpu

### Describe the bug Basic/parallel_for_range_roundup.cpp has been observed to fail on Windows BMG in CI (for example https://github.com/intel/llvm/actions/runs/19928913250/job/57137636805) ``` ******************** TEST 'SYCL :: Basic/parallel_for_range_roundup.cpp' FAILED ******************** Exit Code: 1 Command...

bug
confirmed

### Describe the bug Graph/RecordReplay/host_task_in_order_dependency.cpp has been observed to fail on Windows Gen12 in CI (for example https://github.com/intel/llvm/actions/runs/19928913250/job/57137636820) ``` ******************** TEST 'SYCL :: Graph/RecordReplay/host_task_in_order_dependency.cpp' FAILED ******************** Exit Code: 1 Command...

bug
confirmed

https://godbolt.org/z/c5rr9aWrj ```c++ #include int main() { sycl::device d; auto id = getSyclObjImpl(d); sycl::queue q; auto iq = getSyclObjImpl(q); } ``` compiles while it shouldn't. I think this is due to...

bug
confirmed

Fix several problems with the example in this extension: * The `use_root_sync` property is a kernel property, not a kernel launch property. Therefore, it should decorate the kernel definition, not...

For use cases where the underlying `std::shared_ptr` is really needed, add new `getSyclObjImplPtr`. Motivation: * I want to change device/platform to use raw pointers instead of `std::shared_ptr`, so old semantics...