From 653fbf4d5186f37e0516dec2a4354de4dbe0f551 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Fri, 4 Sep 2026 10:08:07 +0200 Subject: [PATCH] update cuda backend to torch==2.14+cuda==13.2 Signed-off-by: Vladimir Mandic --- CHANGELOG.md | 1 + TODO.md | 1 + installer.py | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad851ae10..4f6a633e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/TODO.md b/TODO.md index 72034c0c5..d8ef871fe 100644 --- a/TODO.md +++ b/TODO.md @@ -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 diff --git a/installer.py b/installer.py index 95b6fc85a..73aa1fa01 100644 --- a/installer.py +++ b/installer.py @@ -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