feat: add intel-sycl support

Adding Intel Sycl with the feature flag `intel-sycl` to it. Static
linking the intel sycl isn't possible, that's the reason why it's
dynamic linked.
This commit is contained in:
Daniél Kerkmann 2025-06-26 15:42:01 +02:00
parent e3d67d513b
commit 5cbca18263
No known key found for this signature in database
GPG key ID: 5F96761280921DC9
3 changed files with 30 additions and 5 deletions

View file

@ -33,6 +33,7 @@ openblas = ["whisper-rs-sys/openblas"]
metal = ["whisper-rs-sys/metal", "_gpu"]
vulkan = ["whisper-rs-sys/vulkan", "_gpu"]
openmp = ["whisper-rs-sys/openmp"]
intel-sycl = ["whisper-rs-sys/intel-sycl", "_gpu"]
_gpu = []
test-with-tiny-model = []