Skip to content
Merged
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 tensorrt_llm/llmapi/llm_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,12 @@ def __init__(self, **kwargs):
self.max_total_draft_tokens = kwargs[
'num_nextn_predict_layers'] # Current MTP only support linear tree

if not self.mtp_eagle_one_model:
logger.warning(
"2-model style MTP is deprecated. The mtp_eagle_one_model flag will do nothing "
"in release 1.3. After that, the flag will be removed entirely."
)

@classmethod
def from_dict(cls, data: dict):
out = cls(**data)
Expand Down