mirror of
https://github.com/vladmandic/automatic
synced 2026-09-07 05:20:47 +02:00
use torch==2.8.0 as default for cuda
Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
+4
-3
@@ -40,7 +40,8 @@ And (*as always*) many bugfixes and improvements to existing features!
|
||||
basic support for *Wan 2.1 VACE 1.3B* and *14B* variants
|
||||
optimized support with granular guidance control will follow soon
|
||||
**Torch**
|
||||
- Set default for ROCm and OpenVINO to `torch==2.8.0`
|
||||
- Set default to `torch==2.8.0` for *CUDA, ROCm and OpenVINO*
|
||||
- Add support for `torch==2.9.0`
|
||||
- **UI**
|
||||
- new embedded docs/wiki search!
|
||||
**Docs** search: fully-local and works in real-time on all document pages
|
||||
@@ -75,8 +76,8 @@ And (*as always*) many bugfixes and improvements to existing features!
|
||||
- new feature to specify which modules to offload always or never
|
||||
in *settings -> model offloading -> offload always/never*
|
||||
- new `highvram` profile provides significant performance boost on gpus with more than 24gb
|
||||
- new `offload during pre-forward` option
|
||||
in *settings -> model offloading*
|
||||
- new `offload during pre-forward` option
|
||||
in *settings -> model offloading*
|
||||
switches from explicit offloading to implicit offloading on module execution change
|
||||
- new `diffusers_offload_nonblocking` exerimental setting
|
||||
instructs torch to use non-blocking move operations when possible
|
||||
|
||||
+1
-2
@@ -648,8 +648,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/cu128 --extra-index-url https://download.pytorch.org/whl/nightly/cu126')
|
||||
else:
|
||||
# cmd = os.environ.get('TORCH_COMMAND', 'torch==2.6.0+cu126 torchvision==0.21.0+cu126 --index-url https://download.pytorch.org/whl/cu126')
|
||||
cmd = os.environ.get('TORCH_COMMAND', 'torch==2.7.1+cu128 torchvision==0.22.1+cu128 --index-url https://download.pytorch.org/whl/cu128')
|
||||
cmd = os.environ.get('TORCH_COMMAND', 'torch==2.8.0+cu128 torchvision==0.23.0+cu128 --index-url https://download.pytorch.org/whl/cu128')
|
||||
return cmd
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user