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

When I compile this code: ``` #include using namespace cl::sycl; int main() { queue q(default_selector().select_device()); auto buf = cl::sycl::buffer(cl::sycl::range(1)); q.submit([&](handler &cgh) { auto globalAcc = buf.get_access(cgh); auto sizeAcc = buf.get_access(cgh);...

bug

I am not clear if users can enable kernel SIMD vectorization and compute-unit duplication, which are available in Intel OpenCL SDK for FPGA, in the oneAPI FPGA flow. Thanks

There is a comment from @bader: > @AlexeySachkov, I would prefer if we disable vectorizers only for SPIR target as I noted here. So if Xilinx FPGA uses different triple,...

enhancement
performance

I make statement, anything wrong please tell me. I want to understand USM allocation regarding to "device" or "context". Consider Unified Addressing, Virtual Address Space tied to a context, consider...

question

**Describe the bug** llvm/bin/config --libs does not include "-lLLVMGenXIntrinsics" when I believe that it should. **To Reproduce** Run llvm/bin/config --libs. **Environment (please complete the following information):** - OS: Linux -...

bug

**Describe the bug** In its default "direct mode", `ccache` examines the preprocessor output to determine all dependencies for a given translation unit. In doing so, `ccache` gets tripped up by...

bug

**Describe the bug** `auto device = sycl::make_device((_ze_device_handle_t*)hDevice);` fails at run. ``` terminate called after throwing an instance of 'cl::sycl::runtime_error' what(): Native API failed. Native API returns: -30 (CL_INVALID_VALUE) -30 (CL_INVALID_VALUE...

bug

Using level-zero as example, when I get ```ze_command_queue_handle_t``` from ```get_native``` function, does it immediately execute still opening command list? Or there must be a function that can execute all pending...

enhancement

**Describe the bug** After following the getting started guide and other connected documentation I can build the `simple-sycl-app.exe`, it runs fine but not with the level_zero backend: ``` root@5aad1915b0db:/project# SYCL_DEVICE_FILTER="level_zero:gpu"...

bug

**Describe the bug** At the moment of putting the option /Qsave-temps it producses an error **To Reproduce** Please describe the steps to reproduce the behavior: 1. Include code snippet as...

bug