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
4 changes: 3 additions & 1 deletion megatron/core/transformer/transformer_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,9 @@ class TransformerConfig(ModelParallelConfig):
"""Number of SMs to use for HybridEP. In pure NVL scenarios,
16 SMs can generally achieve good bandwidth."""

untie_embeddings_and_output_weights: bool = False
"""The model's input word embedding matrix and the output layer's weight matrix are tied"""

####################
# initialization
####################
Expand Down Expand Up @@ -787,7 +790,6 @@ class TransformerConfig(ModelParallelConfig):
lora_out_init_method: Optional[str] = None
"""Lora b init method"""


####################
# TE_FL
####################
Expand Down