Skip to content

Releases: intel/llvm

DPC++ daily 2022-04-29

29 Apr 16:19
1292532
Compare
Choose a tag to compare
Pre-release
[SYCL] Make local accessor argument allocation 1-byte minimum (#6032)

Some DPC++ backends, such as OpenCL, does not allow setting local memory
kernel arguments with a size of zero bytes. As such, the runtime library
can fail with a backend error if a local accessor has a zero-size. These
changes make a special case for local accessors with a zero byte size
making it allocate a single byte of memory.

Signed-off-by: Larsen, Steffen <[email protected]>

DPC++ daily 2022-04-28

28 Apr 16:26
273034a
Compare
Choose a tag to compare
Pre-release
sycl-nightly/20220428

[SYCL] [FPGA] Update the experimental latency control API to use prop…

DPC++ daily 2022-04-27

27 Apr 16:24
e86baf4
Compare
Choose a tag to compare
Pre-release
sycl-nightly/20220427

[SYCL][PI] Restore find_package(Threads) to fix build issue in some e…

DPC++ daily 2022-04-25

25 Apr 16:22
0f0c5d1
Compare
Choose a tag to compare
Pre-release
[SYCL][libclc][CUDA] Add --ffast-math support (#5801)

This patch allows the `--ffast-math` compiler
flag to substitute the regular `genfloatf` math
built-ins with their `::native` versions.

Moreover, this patch completes the support of natives
built-ins for `libclc/ptx-nvidiacl` connecting
them with the `__nv_fast` functions present in
libdevice. If a fast function is not available in
libdevice the corresponding `nvvm` intrinsic is used.

DPC++ daily 2022-04-24

24 Apr 16:18
8b3c8c4
Compare
Choose a tag to compare
Pre-release
sycl-nightly/20220424

[SYCL] Add support for get_native for buffer and fix backend_return_t…

DPC++ daily 2022-04-23

23 Apr 16:36
8b3c8c4
Compare
Choose a tag to compare
Pre-release
sycl-nightly/20220423

[SYCL] Add support for get_native for buffer and fix backend_return_t…

DPC++ daily 2022-04-22

22 Apr 16:21
e62b5aa
Compare
Choose a tag to compare
Pre-release
sycl-nightly/20220422

[SYCL] Force inline spec constant retrieval function to help BEs at -…

DPC++ daily 2022-04-21

21 Apr 16:36
c2362e0
Compare
Choose a tag to compare
Pre-release
Update icd loader (#6036)

The OpenCL ICD loader community enabled the trace mechanism.

DPC++ daily 2022-04-20

20 Apr 16:20
8edb62e
Compare
Choose a tag to compare
Pre-release
sycl-nightly/20220420

[SYCL][ESIMD] Change arguments of some APIs to be template parameters…

DPC++ daily 2022-04-19

19 Apr 16:19
ad6253e
Compare
Choose a tag to compare
Pre-release
[SYCL][L0] Fix BDF format on PCI query (#6011)

The PCI address currently reported by the L0 backend does not correctly
report domain, bus, device, and function as hexadecimal values. This
commit changes the reported format to use convert the values hexadecimal
representation. Additionally it also pads the values with leading zeros.

Signed-off-by: Larsen, Steffen <[email protected]>