-
Notifications
You must be signed in to change notification settings - Fork 22.2k
Add Kimi Linear to unified delta net #19668
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
+110
−452
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
fa44de7
models : add llm_build_delta_net_base
ggerganov 403e78e
cont : keep qwen35 and qwen35moe graphs intact
ggerganov 2371dfb
cont : add comments [no ci]
ggerganov cff8f60
add kimi linear to delta-net-base
ymcki b0594c9
sync to b8057
ymcki 6c765eb
removed unnecessary ggml_cont from g_exp_t
ymcki a93bcc4
removed ggml_cont from g_diff_exp_t. moved ggml_cont for o to kimi-li…
ymcki 7b26805
removed unnecessary diag mask
ymcki 4a6393e
cont : simplify
ggerganov c07977a
cont : avoid graph splits
ggerganov 117763e
scale q after mul instead of beginning
ymcki 6dad437
Merge branch 'ggml-org:master' into dn
ymcki df269dc
Merge branch 'master' of github.com:ymcki/llama.cpp into dn
ymcki 1cea24d
scale q after mul instead of beginning
ymcki a6fa6d5
scale q after mul instead of beginning
ymcki 6432f95
identical ppl
ymcki de6a842
cont : fix scale and decay mask
ggerganov 23cccea
minor : remove TODO
ggerganov 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
Some comments aren't visible on the classic Files Changed page.
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
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.
Shouldn't this be:
For the current models, it does not make a difference because
S_k == S_v, but in general, I think the gate has dimensions ofV?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.
Based on my understanding of the fla code, gate is passed to the gk field of chunk_kda_fwd_intra, so its dimension should be S_k, H_k. This function also support gv that is S_v, H_v but I don't know whether any model is using gv.
https://github.com/fla-org/flash-linear-attention/blob/main/fla/ops/kda/chunk_fwd.py
Also, state has a dimension of [S_v, S_k, H_v, n_seqs]. That's why when I ggml_mul with it, I need to make sure S_k matches at the 2nd dim.