Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
whisper-asr-webservice
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Schwertgen
whisper-asr-webservice
Commits
a087f746
Commit
a087f746
authored
3 months ago
by
Ahmet Öner
Browse files
Options
Downloads
Patches
Plain Diff
Update Torch and Torchaudio dependencies for multi-architecture support
parent
50a0a496
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+2
-1
2 additions, 1 deletion
CHANGELOG.md
poetry.lock
+290
-3
290 additions, 3 deletions
poetry.lock
pyproject.toml
+10
-2
10 additions, 2 deletions
pyproject.toml
with
302 additions
and
6 deletions
CHANGELOG.md
+
2
−
1
View file @
a087f746
Changelog
=========
[1.8.1] (2025-02-1
7
)
[1.8.1] (2025-02-1
8
)
--------------------
### Fixed
-
Fixed issues with Torch CUDA and cuDNN
-
Updated Torch and Torchaudio dependencies for multi-architecture support
[1.8.0] (2025-02-17)
--------------------
...
...
This diff is collapsed.
Click to expand it.
poetry.lock
+
290
−
3
View file @
a087f746
This diff is collapsed.
Click to expand it.
pyproject.toml
+
10
−
2
View file @
a087f746
...
...
@@ -29,8 +29,16 @@ whisperx = "^3.3.1"
tqdm
=
"^4.67.1"
llvmlite
=
"^0.44.0"
numba
=
"^0.61.0"
torch
=
{
version
=
"2.6.0"
,
source
=
"pytorch-cpu"
}
torchaudio
=
{
version
=
"2.6.0"
,
source
=
"pytorch-cpu"
}
torch
=
[
{
version
=
"2.6.0"
,
source
=
"pypi"
,
markers
=
"sys_platform
=
=
'darwin'"},
{
version
=
"2.6.0"
,
source
=
"pypi"
,
markers
=
"platform_machine
=
=
'aarch64'
and
sys_platform
!
=
'darwin'"},
{
version
=
"2.6.0"
,
source
=
"pytorch-cpu"
,
markers
=
"platform_machine
=
=
'x86_64'
and
sys_platform
!
=
'darwin'" },
]
torchaudio
=
[
{
version
=
"2.6.0"
,
source
=
"pypi"
,
markers
=
"sys_platform
=
=
'darwin'"},
{
version
=
"2.6.0"
,
source
=
"pypi"
,
markers
=
"platform_machine
=
=
'aarch64'
and
sys_platform
!
=
'darwin'"},
{
version
=
"2.6.0"
,
source
=
"pytorch-cpu"
,
markers
=
"platform_machine
=
=
'x86_64'
and
sys_platform
!
=
'darwin'" },
]
[poetry.group.dev.dependencies]
pytest
=
"^8.3.4"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment