Skip to content

Tags: intel/llvm

Tags

sycl-web/status

Toggle sycl-web/status's commit message
Completed successfully

sycl-web/sycl-latest-good -- dfd72fc - Fri Oct 10 19:35:17 2025 +0000
sycl-web/main-latest-good -- 513b10d - Sun Oct 12 16:43:04 2025 -0700

sycl-web/main-latest-good

Toggle sycl-web/main-latest-good's commit message
Merged to sycl-web with no conflict or build issue

sycl-web/latest-buildable

Toggle sycl-web/latest-buildable's commit message
Build passed

sycl-web/sycl-latest-good

Toggle sycl-web/sycl-latest-good's commit message
Merged to sycl-web with no conflict or build issue

nightly-2025-10-12

Toggle nightly-2025-10-12's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[SYCL][Doc] Simpler free function kernel enqueue (#19995)

Specify a simplified way to enqueue free function kernels without first
getting a kernel bundle. The style follows the enqueue functions in
"sycl_ext_oneapi_enqueue_functions".

Once the KHR extension "sycl_khr_free_function_commands" is finalized,
we may also add enqueue functions that follow that style. However, we
will first need to extend the `requirements` in that KHR to accept
kernel launch properties.

nightly-2025-10-11

Toggle nightly-2025-10-11's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[SYCL][Doc] Simpler free function kernel enqueue (#19995)

Specify a simplified way to enqueue free function kernels without first
getting a kernel bundle. The style follows the enqueue functions in
"sycl_ext_oneapi_enqueue_functions".

Once the KHR extension "sycl_khr_free_function_commands" is finalized,
we may also add enqueue functions that follow that style. However, we
will first need to extend the `requirements` in that KHR to accept
kernel launch properties.

nightly-2025-10-10

Toggle nightly-2025-10-10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[CI] Fail benchmark CI only on regressions in CPU instruction count (#…

…20277)

Benchmark script changes in this PR are NFC.

Bit of a long overdue change: Wall time has proven to not be a good
metric for stable performance numbers. This PR changes SYCL benchmarking
CI regression filters to only fail on severe regressions in tests
measuring CPU instruction count only.

This PR does not affect the behavior of benchmarking scripts. It only
affects the behavior of the CI w.r.t. regression failures for _SYCL_: it
does not concern regressions detected in UR or L0.

nightly-2025-10-09

Toggle nightly-2025-10-09's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[clang-linker-wrapper][NFC] Re-order command line arguments. (#20323)

Set `llvm-link` parameters before input/output files.

`llvm-link <params> <input files> -o <output file>`

nightly-2025-10-08-d782af3

Toggle nightly-2025-10-08-d782af3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[SYCL][E2E] Move free_function_kernels.cpp to UNSUPPORTED (#20305)

It's causing all the hangs/fails on BMG in the
[nightly](https://github.com/intel/llvm/actions/runs/18300912064/job/52109204455),
I manually narrowed it down to this test.

Nightly run with this change
[here](https://github.com/intel/llvm/actions/runs/18324422627/job/52186913555).

Signed-off-by: Sarnie, Nick <[email protected]>

nightly-2025-10-08

Toggle nightly-2025-10-08's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[UR][L0] Added safety checks to prevent double urProgramRelease (#20257)

Users used to be able to call urProgramRelease on the same module, but
with these changes, that would no longer be possible.

---------

Signed-off-by: Zhang, Winston <[email protected]>