Some checks failed
Python Linting / Run Ruff (push) Has been cancelled
Python Linting / Run Pylint (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.10, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.11, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.12, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-unix-nightly (12.1, , linux, 3.11, [self-hosted Linux], nightly) (push) Has been cancelled
Execution Tests / test (macos-latest) (push) Has been cancelled
Execution Tests / test (ubuntu-latest) (push) Has been cancelled
Execution Tests / test (windows-latest) (push) Has been cancelled
Test server launches without errors / test (push) Has been cancelled
Unit Tests / test (macos-latest) (push) Has been cancelled
Unit Tests / test (ubuntu-latest) (push) Has been cancelled
Unit Tests / test (windows-2022) (push) Has been cancelled
Includes 30 custom nodes committed directly, 7 Civitai-exclusive loras stored via Git LFS, and a setup script that installs all dependencies and downloads HuggingFace-hosted models on vast.ai. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
859 B
Plaintext
26 lines
859 B
Plaintext
XFormers is now needed for the flux region spatial control to work.
|
|
|
|
Go to your python_embeded folder and Check your pytorch and cuda version:
|
|
|
|
python.exe -c "import torch; print(torch.__version__)"
|
|
|
|
check for xformers if installed:
|
|
|
|
python.exe -m pip show xformers
|
|
|
|
Please go to: https://github.com/facebookresearch/xformers/releases
|
|
|
|
Check for the latest Xformers version that is compatible with your installed Pytorch version.
|
|
|
|
You can Install the latest version of xformers using this command:
|
|
|
|
python.exe -m pip install xformers==PUTVERSIONHERE --index-url https://download.pytorch.org/whl/cuVERSION
|
|
|
|
example For PyTorch 2.5.1 with CUDA 12.4:
|
|
python.exe -m pip install xformers==0.0.28.post3 --index-url https://download.pytorch.org/whl/cu124
|
|
|
|
As of 8th December 2024:
|
|
Recommended:
|
|
xformers==0.0.28.post3
|
|
PyTorch 2.5.1
|
|
CUDA version: cu124 (for CUDA 12.4) |