-
Notifications
You must be signed in to change notification settings - Fork 347
[Merge stable to main] Llama3.3-70b and 3.1-8b - Fix sampling parameters #36476
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+1,522
−605
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
f8e7236
Merge stable to main: Llama3.3-70b sampling params and logprobs fixes
djordje-tt 6f3be71
Fix merging bugs
djordje-tt 3150809
Another fix of merging
djordje-tt 7f1c437
Fix ttnn.div round_mode -> rounding_mode
djordje-tt 7337d9c
Fix output mismatch and TTFT drop 68.5->74ms
djordje-tt dc54c8b
Update ttnn.combine_device_tensors call
djordje-tt 833c72f
Fix ttnn.combine_device_tensors call
djordje-tt a567436
Add prefill sampling support to TTT models (#35021)
sraizada-tt 70cc1ae
Llama-3.1-8B decode TSU optimizations (#35142)
jonathansuTT 28e4af8
Fix non-uniform seeding (#35906)
rdraskicTT 3b1d0e4
Fix reduce_scatter_minimial_async merge conflict bugs
djordje-tt 5ff6d53
Fix vLLM nightly CI test failures
djordje-tt 3a40cd3
Update condition for setting links in model_config
djordje-tt 7c89c43
Fix prefill all_gather num_links for non-Galaxy multichip devices
djordje-tt 8703cd7
Fix gemma
rdraskicTT 8f4d87f
Fix autoflake
rdraskicTT 02427da
Temporarily enable cache gen
rdraskicTT ca530ea
Fix padded vocab size bug
rdraskicTT f3a15b5
Increase server timeout
rdraskicTT f59afb7
Resolve comments and remove dead code
djordje-tt b58330e
Revert "Temporarily enable cache gen"
rdraskicTT a807555
Reduce global_cb_size to 728 tiles back
djordje-tt bdfb675
Fix qwen test
djordje-tt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate check for
top_k < 1at lines 347-348 and 353-354. The second check (lines 353-354) is redundant and should be removed.