mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-04-15 13:02:35 +08:00
Add multiple ComfyUI input assets and configuration files: create symlinks for model preset folders (flux, lora variants, pony, sd_1.5, etc.) pointing to local custom_nodes path; import dozens of SDXL reference JPEGs into ComfyUI/input/sdxl_1.0; add Launch_314.ps1, config/gender_words_config.yaml, extra_models_config.yaml, and styles/default.csv. Also remove various example/placeholder files and empty model placeholder directories to tidy the repo.
11 lines
444 B
PowerShell
11 lines
444 B
PowerShell
Write-Host "Initializing Blackwell Stack (Python 3.14.4 + CUDA 13.2)" -ForegroundColor Green
|
|
|
|
# start ComfyUI using .\Launch_314.ps1
|
|
|
|
# Activate the 3.14 venv
|
|
.\venv\Scripts\Activate.ps1
|
|
|
|
# GPU 1 is your 5070 Ti.
|
|
# --highvram: Keeps the model weights in your 16GB VRAM for max speed.
|
|
# --use-pytorch-cross-attention: This is the native, stable path for Python 3.14.
|
|
python main.py --highvram --preview-method auto --use-pytorch-cross-attention |