Skip to content

Tags: tiwaria1/llvm

Tags

sycl-nightly/20220301

Toggle sycl-nightly/20220301's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL] Fix host device local accessor alignment (intel#5554)

Local kernel arguments must be aligned to the type size, simply using `std::vector<char>` doesn't always provide the correct alignment. So this patch adds extra padding to the vector and ensures that the pointer returned for the accessor is actually aligned to the type size.

This issue was exposed by: intel/llvm-test-suite#608, which was a follow up to fixing local accessor alignment for the CUDA plugin.

sycl-nightly/20220228

Toggle sycl-nightly/20220228's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL][NFC] Fix warnings after compile-time properties implementation (

…intel#5684)

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

sycl-nightly/20220227

Toggle sycl-nightly/20220227's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SPIR-V] Add SPV_INTEL_long_composites (intel#2848)

sycl-nightly/20220226

Toggle sycl-nightly/20220226's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[CI] Uplift driver versions (intel#5679)

sycl-nightly/20220225

Toggle sycl-nightly/20220225's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL] Make queue::device_has() private (intel#5670)

The function is not defined by the specification, and was marked as public by mistake.

sycl-nightly/20220224

Toggle sycl-nightly/20220224's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL] Fix buffer creation from rvalue iterator (intel#5609)

Use pointer to iterator instead of pointer to underlining data as host
pointer in XPTI notification.

sycl-nightly/20220223

Toggle sycl-nightly/20220223's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[CI] Fix typo in config file (intel#5643)

sycl-nightly/20220222

Toggle sycl-nightly/20220222's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[CI] Fix cache location on Windows (intel#5603)

Also print cache statistics after build is complete.

sycl-nightly/20220221

Toggle sycl-nightly/20220221's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL][NFC] Fix a warning about uninitialized struct members (intel#5610

)

sycl-nightly/20220219

Toggle sycl-nightly/20220219's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[SYCL][L0] Remove ZeModule when program build failed (intel#5541)

When a sycl::program is attempted to build, a ZeModule is created.
When the attempt failed, we need to clean up the ZeModule that is associated with the failed program to avoid memory leak.