update cuda backend to torch==2.14+cuda==13.2

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2026-09-04 10:08:07 +02:00
parent 32852b006b
commit 653fbf4d51
3 changed files with 3 additions and 1 deletions
+1
View File
@@ -46,6 +46,7 @@ All-about-optimizations:
- intercept and profiling hooks
- on-demand convert standard model on-demand
- **Compute**
- cuda: update `torch==2.14.0` with `cuda==13.2`
- openvino: update `openvino==2026.3.1` with `torch==2.13.0`
- add `SD_SKIP_AUTOTUNE` env variable to skip triton autotune and use default config for all triton kernels
*note*: this may improve initial generate time, but may also reduce performance on some models
+1
View File
@@ -8,6 +8,7 @@
- LTX: Implement LTX2DFRPipeline
- ROCm: v10
- Video: unify execution path for ui and api
- Torch: update ipex, rocm to torch==2.14
## Issues
+1 -1
View File
@@ -647,7 +647,7 @@ def install_cuda():
if args.use_nightly:
cmd = os.environ.get('TORCH_COMMAND', '--upgrade --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu132 --extra-index-url https://download.pytorch.org/whl/nightly/cu130')
else:
cmd = os.environ.get('TORCH_COMMAND', 'torch==2.13.0+cu132 torchvision==0.28.0+cu132 --index-url https://download.pytorch.org/whl/cu132')
cmd = os.environ.get('TORCH_COMMAND', 'torch==2.14.0+cu132 torchvision==0.29.0+cu132 --index-url https://download.pytorch.org/whl/cu132')
return cmd