Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
coderai
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexlab
coderai
Commits
881f2d46
Commit
881f2d46
authored
Mar 14, 2026
by
Your Name
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add debug for GPU device and environment in whisper-server
parent
73d753e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
coderai
coderai
+2
-0
No files found.
coderai
View file @
881f2d46
...
...
@@ -2071,6 +2071,7 @@ class WhisperServerManager:
cmd
.
extend
([
"--port"
,
str
(
self
.
port
)])
print
(
f
"Starting whisper-server: {' '.join(cmd)}"
)
print
(
f
"DEBUG: Full whisper-server command: {' '.join(cmd)}"
)
try
:
self
.
process
=
subprocess
.
Popen
(
...
...
@@ -5052,6 +5053,7 @@ def main():
model_to_use = audio_models[0] if audio_models else None
gpu_device = getattr(args, '
audio_vulkan_device
', 0) or 0
print(f"DEBUG: Starting whisper-server with gpu_device={gpu_device}")
print(f"DEBUG: GGML_VK_VISIBLE_DEVICES = {os.environ.get('
GGML_VK_VISIBLE_DEVICES
', '
not
set
')}")
actual_model_path = whisper_server_mgr.start(model_path=model_to_use, gpu_device=gpu_device)
if actual_model_path:
# Update audio_models in multi_model_manager to store the actual path (not the URL)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment