pjrt/oneapi: Add support for oneAPI in GitHub workflows and related scripts#86
Merged
Conversation
7a91b7e to
bb7c8f9
Compare
hugomano
reviewed
May 21, 2026
hugomano
reviewed
May 21, 2026
hugomano
reviewed
May 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
in https://github.com/zml/xla/tree/zml/oneapi
Basic oneAPI/SYCL single-device support:
Wires SYCL BLAS through oneMKL.
Adds GEMM and strided-batched GEMM support.
Supports several dtypes: FP16, BF16, FP32, FP64, complex, and some int8 paths.
Adds basic BLAS-Lt matmul execution, including default and bias epilogues.
Makes oneCCL multi-device collectives explicitly unsupported instead of returning fake success.
Fixes
SyclStream::RecordEventso it actually updates the passedSyclEvent.Fixes oneAPI module caching:
Replaces raw SPIR-V buffer pointer cache keys with stable SPIR-V byte fingerprints.
Identical SPIR-V binaries loaded from different host buffers now share the same cached Level Zero module.
Adds refcount/cache hit/cache miss logging.
Adds timing logs for Level Zero module creation.
Adds a test that loads copied SPIR-V bytes and verifies both loads return the same module handle.
oneAPI/SYCL BLAS functional for single-device execution.
SPIR-V module loading avoids duplicate Level Zero module creation for identical binaries.