-
Notifications
You must be signed in to change notification settings - Fork 13.5k
metal : refactor kernel args into structs #10238
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
Merged
Conversation
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
slaren
reviewed
Nov 9, 2024
slaren
approved these changes
Nov 10, 2024
ab6a3b7 to
86ed72d
Compare
|
#10256 should be ready to merge already. |
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.
Copilot reviewed 2 out of 5 changed files in this pull request and generated no suggestions.
Files not reviewed (3)
- Makefile: Language not supported
- ggml/src/CMakeLists.txt: Language not supported
- ggml/src/ggml-metal-impl.h: Language not supported
ggml-ci
ggml-ci
ggml-ci
ggml-ci
86ed72d to
a112eb4
Compare
arthw
pushed a commit
to arthw/llama.cpp
that referenced
this pull request
Nov 18, 2024
* metal : add kernel arg structs (wip) * metal : fattn args ggml-ci * metal : cont + avoid potential int overflow [no ci] * metal : mul mat struct (wip) * cont : mul mat vec * cont : pass by reference * cont : args is first argument * cont : use char ptr * cont : shmem style * cont : thread counters style * cont : mul mm id ggml-ci * cont : int safety + register optimizations ggml-ci * metal : GGML_OP_CONCAT ggml-ci * metal : GGML_OP_ADD, GGML_OP_SUB, GGML_OP_MUL, GGML_OP_DIV * metal : GGML_OP_REPEAT * metal : GGML_OP_CPY * metal : GGML_OP_RMS_NORM * metal : GGML_OP_NORM * metal : add TODOs for rest of ops * ggml : add ggml-metal-impl.h ggml-ci
dmahurin
added a commit
to dmahurin/llama.cpp
that referenced
this pull request
Mar 20, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
ref #3229
Reduce encoder arguments, improve type safety, reduce register pressure, vectorize some loops and more uniform code style. Add new
ggml-metal-impl.hheader that currently contains the new kernel argument structs.TODO:
GGML_OP_CONCATGGML_OP_ADD,GGML_OP_SUB,GGML_OP_MUL,GGML_OP_DIVGGML_OP_REPEATGGML_OP_ACC,GGML_OP_CPY,GGML_OP_CONT,GGML_OP_DUPGGML_OP_ROPEGGML_OP_FLASH_ATTN_EXTGGML_OP_MUL_MATGGML_OP_MUL_MAT_IDGGML_OP_RMS_NORMGGML_OP_NORM