Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,12 @@ jobs:
sudo apt-get update
sudo apt-get install -y vulkan-sdk

- name: Setup Vulkan SDK (Windows)
- name: Install CUDA Toolkit (Windows)
if: matrix.platform == 'windows-latest'
uses: humbletim/setup-vulkan-sdk@v1.2.1
uses: Jimver/cuda-toolkit@v0.2.11
with:
vulkan-query-version: latest
vulkan-components: Vulkan-Headers, Vulkan-Loader, Glslang, SPIRV-Tools
vulkan-use-cache: true
cuda: '12.2'
method: 'network'

- name: install frontend dependencies
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ whisper-rs = "0.13.2"
whisper-rs = { version = "0.13.2", features = ["metal"] }

[target.'cfg(windows)'.dependencies]
whisper-rs = { version = "0.13.2", features = ["vulkan"] }
whisper-rs = { version = "0.13.2", features = ["cuda"] }

[target.'cfg(target_os = "linux")'.dependencies]
whisper-rs = { version = "0.13.2", features = ["vulkan"] }
Expand Down