Spaces:
Running on Zero
Running on Zero
File size: 10,618 Bytes
b701455 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 | # ROCm and Metal/MPS Support
LightDiffusion-Next includes comprehensive support for AMD GPUs with ROCm and Apple Silicon Macs with Metal Performance Shaders (MPS). This guide covers the platform-specific considerations and optimizations available for non-NVIDIA hardware.
## ROCm Support (AMD GPUs)
### Overview
ROCm (Radeon Open Compute) is AMD's open-source platform for GPU computing. LightDiffusion-Next automatically detects and utilizes ROCm-compatible AMD GPUs through PyTorch's HIP backend.
### Supported Hardware
- **RDNA Architecture:**
- RDNA 2 (RX 6000 series) - FP16 support
- RDNA 3 (RX 7000 series) - FP16 and BF16 support
- **CDNA Architecture:**
- CDNA (MI100)
- CDNA 2 (MI200 series) - FP16 and BF16 support
- CDNA 3 (MI300 series) - FP16 and BF16 support
### Installation
1. **Install ROCm drivers and runtime:**
Follow the official [ROCm installation guide](https://rocm.docs.amd.com/en/latest/deploy/linux/quick_start.html) for your Linux distribution.
```bash
# Example for Ubuntu 22.04
wget https://repo.radeon.com/amdgpu-install/latest/ubuntu/jammy/amdgpu-install_latest_all.deb
sudo apt-get install ./amdgpu-install_latest_all.deb
sudo amdgpu-install --usecase=rocm
```
2. **Verify ROCm installation:**
```bash
rocm-smi
/opt/rocm/bin/rocminfo
```
3. **Install PyTorch with ROCm support:**
```bash
pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/rocm6.0
```bash
# Create virtual environment
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip uv
# Install PyTorch with ROCm 6.0 support (adjust version as needed)
uv pip install --index-url https://download.pytorch.org/whl/rocm6.0 torch torchvision
# Install project dependencies
uv pip install -r requirements.txt
```
4. **Launch LightDiffusion-Next:**
```bash
streamlit run streamlit_app.py --server.address=0.0.0.0 --server.port=8501
```
### ROCm-Specific Features
#### Automatic Detection
LightDiffusion-Next automatically detects ROCm GPUs at startup and reports them in the logs:
```
Device: cuda:0 AMD Radeon RX 7900 XTX (ROCm) :
```
#### Memory Management
- **Cache Management:** ROCm uses a more conservative cache clearing strategy compared to CUDA. Cache is only cleared when explicitly forced to prevent memory fragmentation issues.
- **Memory Statistics:** Full memory statistics are available through the standard PyTorch CUDA API (which works transparently with ROCm).
#### Precision Support
- **FP16:** Fully supported on all RDNA and CDNA architectures
- **BF16:** Supported on RDNA 3+ and CDNA 2+ GPUs (automatically detected)
- **FP32:** Always available as fallback
#### Attention Mechanisms
| Feature | ROCm Support | Notes |
|---------|--------------|-------|
| PyTorch Scaled Dot-Product Attention (SDPA) | β
Yes | Default and recommended |
| PyTorch Flash Attention | β
Yes | Available on RDNA 3 and CDNA 2+ |
| xformers | β
Yes | Works with ROCm builds of xformers |
| SageAttention | β No | CUDA-only kernels |
| SpargeAttn | β No | CUDA-only kernels |
**Recommendation:** Use PyTorch's built-in attention (SDPA) on ROCm for best compatibility. Install xformers ROCm build for additional optimizations.
### Performance Tips
1. **Use BF16 on supported GPUs:**
- RDNA 3 (RX 7000 series) and CDNA 2+ support BF16 natively
- BF16 provides better numerical stability than FP16
2. **Enable PyTorch attention:**
- Automatically enabled for PyTorch 2.0+
- Provides good performance without CUDA-specific optimizations
3. **Install ROCm-compatible xformers:**
```bash
# Build xformers from source for ROCm
git clone https://github.com/facebookresearch/xformers.git
cd xformers
git submodule update --init --recursive
pip install -e . --no-build-isolation
```
4. **Monitor GPU utilization:**
```bash
watch -n 1 rocm-smi
```
### Known Limitations
- **SageAttention and SpargeAttn:** These optimizations use CUDA-specific kernels and are not available on ROCm. The system automatically falls back to PyTorch SDPA.
- **Stable-Fast:** May have limited support depending on ROCm version. Test compilation before relying on it.
- **Driver Maturity:** Ensure you're using the latest ROCm version for best stability and performance.
---
## Metal/MPS Support (Apple Silicon)
### Overview
Metal Performance Shaders (MPS) provides GPU acceleration on Apple Silicon Macs (M1, M2, M3 series). LightDiffusion-Next automatically detects and utilizes MPS when running on macOS.
### Supported Hardware
- **Apple Silicon:**
- M1, M1 Pro, M1 Max, M1 Ultra
- M2, M2 Pro, M2 Max, M2 Ultra
- M3, M3 Pro, M3 Max
- All future M-series chips
### Installation
1. **Ensure macOS is up to date:**
- macOS 12.3 (Monterey) or later required
- macOS 13+ (Ventura) recommended for best performance
2. **Install Python 3.10:**
```bash
# Using Homebrew
brew install python@3.10
```
3. **Create virtual environment and install dependencies:**
```bash
python3.10 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
# Install PyTorch with MPS support
pip install torch torchvision torchaudio
# Install project dependencies
pip install -r requirements.txt
```
4. **Launch LightDiffusion-Next:**
```bash
streamlit run streamlit_app.py --server.address=0.0.0.0 --server.port=8501
```
### MPS-Specific Features
#### Automatic Detection
MPS is automatically detected and enabled on compatible hardware:
```
Device: mps
VAE dtype: torch.float16
Set vram state to: SHARED
```
#### Memory Management
- **Unified Memory:** Apple Silicon uses unified memory shared between CPU and GPU
- **VRAM State:** Automatically set to `SHARED` mode
- **Cache Management:** Uses `torch.mps.empty_cache()` for memory cleanup
#### Precision Support
- **FP16:** Fully supported and recommended (default)
- **FP32:** Supported but slower
- **BF16:** Not supported on MPS backend
#### Attention Mechanisms
| Feature | MPS Support | Notes |
|---------|-------------|-------|
| PyTorch Scaled Dot-Product Attention (SDPA) | β
Yes | Default and recommended |
| PyTorch Flash Attention | β No | Not available on MPS |
| xformers | β No | MPS backend not supported |
| SageAttention | β No | CUDA/MPS incompatible |
| SpargeAttn | β No | CUDA-only kernels |
**Recommendation:** Use PyTorch's built-in attention (SDPA) on MPS. It's well-optimized for Apple Silicon.
### Performance Tips
- **Use FP16 precision:**
MPS works best with FP16
Automatically enabled by LightDiffusion-Next
- **Optimize batch sizes:**
Start with smaller batch sizes and increase gradually
Monitor memory usage through Activity Monitor
- **Keep macOS updated:**
Apple regularly improves MPS performance in system updates
- **Close unnecessary applications:**
Unified memory is shared with system processes
Free up RAM for better GPU performance
- **Monitor GPU usage:**
```bash
# Use Activity Monitor -> GPU tab
# Or use powermetrics (requires sudo):
sudo powermetrics --samplers gpu_power -i 1000
```
### Known Limitations
- **Non-blocking transfers:** Not supported; MPS operations are blocking
- **Advanced optimizations:** SageAttention, SpargeAttn, and xformers are not available
- **BF16:** Not supported on MPS backend
- **Memory pressure:** System may swap under high memory load due to unified architecture
### Unified Memory Considerations
Apple Silicon's unified memory architecture means:
- GPU and CPU share the same physical memory pool
- Less memory copying between devices
- System processes compete for the same memory
- Available VRAM depends on total system RAM and current usage
**Recommended RAM:**
- 16 GB: SD1.5 models at moderate resolutions
- 32 GB: Comfortable for most workflows including Flux (with quantization)
- 64 GB+: Professional workflows with large batch sizes
---
## Comparison Table
| Feature | NVIDIA (CUDA) | AMD (ROCm) | Apple (MPS) |
|---------|---------------|------------|-------------|
| FP16 | β
Full | β
Full | β
Full |
| BF16 | β
Full | β
RDNA3+/CDNA2+ | β No |
| PyTorch SDPA | β
Yes | β
Yes | β
Yes |
| Flash Attention | β
Yes | β
RDNA3+/CDNA2+ | β No |
| xformers | β
Yes | β
Build from source | β No |
| SageAttention | β
Yes | β No | β No |
| SpargeAttn | β
Yes (CC 8.0-9.0) | β No | β No |
| Stable-Fast | β
Yes | β οΈ Limited | β No |
| Memory Management | β
Dedicated VRAM | β
Dedicated VRAM | β οΈ Unified Memory |
---
## Troubleshooting
### ROCm Issues
**Problem:** PyTorch doesn't detect ROCm GPU
```bash
# Check ROCm installation
rocm-smi
rocminfo | grep "Name:"
# Verify PyTorch sees GPU
python -c "import torch; print(torch.cuda.is_available()); print(torch.version.hip)"
```
**Problem:** Out of memory errors
- Reduce batch size
- Enable lower VRAM mode in settings
- Close other GPU-using applications
- Check with `rocm-smi` for memory usage
**Problem:** Slow performance
- Verify you're using the correct ROCm-optimized PyTorch build
- Check GPU utilization with `rocm-smi`
- Ensure FP16 or BF16 is enabled (check logs)
### MPS Issues
**Problem:** MPS not detected
```bash
# Verify MPS support
python -c "import torch; print(torch.backends.mps.is_available())"
```
- Ensure macOS 12.3+
- Update to latest macOS version
- Reinstall PyTorch
**Problem:** Memory warnings or crashes
- Reduce batch size
- Close other applications to free unified memory
- Check Activity Monitor for memory pressure
**Problem:** Slower than expected performance
- Verify FP16 is being used (check logs)
- Close background applications
- Update to latest macOS version for performance improvements
- Some models may be CPU-bound on older M1 chips
---
## Getting Help
For platform-specific issues:
1. Check the [FAQ](faq.md) for common questions
2. Review PyTorch's platform-specific documentation:
- [ROCm installation](https://pytorch.org/get-started/locally/#linux-rocm)
- [MPS backend](https://pytorch.org/docs/stable/notes/mps.html)
3. Open an issue on GitHub with:
- Platform details (GPU model, driver version, OS)
- LightDiffusion-Next startup logs
- Output of `python -c "import torch; print(torch.__version__); print(torch.version.hip if hasattr(torch.version, 'hip') else 'CUDA'); print(torch.cuda.is_available())"`
---
**Note:** This documentation reflects the current state of ROCm and MPS support in PyTorch and LightDiffusion-Next. As these platforms mature, more optimizations and features may become available.
|