Updated requirements-ipex.txt #8626
blaaaarggg
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
requirements-ipex.txt
1) Indexes for PyPI & Intel Arc/XPU wheels
--index-url https://pypi.org/simple
--extra-index-url https://download.pytorch.org/whl/xpu
--extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/
2) Core XPU/C++-ABI–compatible builds
torch==2.7.0 # PyTorch tensor library with Arc XPU backend
torchvision==0.22.0 # Computer-vision ops & pretrained models on XPU
torchaudio==2.7.0 # Audio I/O & transforms on XPU
3) Intel® Extension for PyTorch (IPEX)
intel-extension-for-pytorch==2.7.10+xpu
# Graph/operator fusions & mixed-precision on Intel Arc XPU
4) ComfyUI front-end & workflow support
comfyui-frontend-package==1.22.2 # Web UI assets & integration
comfyui-workflow-templates==0.1.29 # Prebuilt node-graph templates
comfyui-embedded-docs==0.2.2 # Offline documentation for nodes
5) SDE solver helper
torchsde # Stochastic differential equations in PyTorch (requires local build)
6) Core Python libraries for SD & model I/O
numpy>=1.25.0 # Array computing & math
einops # Flexible tensor rearrangements
transformers>=4.28.1 # HuggingFace transformer models & tokenizers
tokenizers>=0.13.3 # HuggingFace tokenizers
sentencepiece # SentencePiece tokenization
safetensors>=0.4.2 # Safe, zero-copy tensor serialization
aiohttp>=3.11.8 # Async HTTP client/server framework
yarl>=1.18.0 # Async URL parsing (used by aiohttp)
pyyaml # YAML parsing & serialization
Pillow # Image processing (PIL fork)
scipy # Scientific computing (FFT, optimization, etc.)
tqdm # Progress bars
psutil # System & process utilities
7) Database support (if you use ComfyUI’s storage backends)
alembic # Database schema migrations
SQLAlchemy # SQL toolkit & ORM
8) Non-essential but useful on Arc
kornia>=0.7.1 # GPU-accelerated vision ops & augmentations
spandrel # ComfyUI graph utilities
soundfile # Audio file I/O (libsndfile wrapper)
av>=14.2.0 # Video file I/O (FFmpeg bindings)
pydantic~=2.0 # Data validation & settings management
pydantic-settings~=2.0 # Declarative settings support
Save this file alongside main.py. Then, in your activated venv:
That will:
Pull in the Arc-XPU–enabled wheels for Torch, TorchVision, Torchaudio and IPEX
Install ComfyUI’s front-end, workflow templates, and offline docs
Build torchsde from source (using CMake + Ninja)
Install all the core and optional Python libraries beneficial for Intel Arc usage.
requirements-ipex.txt
Beta Was this translation helpful? Give feedback.
All reactions