Skip to content
Open
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
6 changes: 6 additions & 0 deletions torchtitan/components/quantization/mx.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ def __init__(
"torch.compile enablement is required for highest performance of MXFP8 dynamic quantization."
)

if parallel_dims.tp > 1:
logger.warning(
"TP support for MXFP8 linears is still in progress. "
"Any linear layers with TP applied will use default precision, not MXFP8."
)

self.config = config
self.enabled = True
logger.info("MXFP8 MoE training enabled")
Expand Down
Loading