Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions development/comfyui-server/startup-flags.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ python main.py --disable-auto-launch
| `--fp8_e5m2-unet` | Store UNet weights in fp8 (e5m2). |
| `--fp8_e8m0fnu-unet` | Store UNet weights in fp8 (e8m0fnu). |

<Tip>
**FP8 format differences**: `e4m3fn` (4 exponent bits, 3 mantissa bits) balances precision and dynamic range, making it the most commonly used FP8 format for model loading. `e5m2` (5 exponent, 2 mantissa) favors wider range at the cost of precision. `e8m0fnu` (8 exponent, 0 mantissa) maximizes dynamic range but is not supported on all hardware.
</Tip>

### VAE precision

| Flag | Description |
Expand Down
Loading