-
Notifications
You must be signed in to change notification settings - Fork 10
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
O(n) Embedding #80
Merged
Merged
O(n) Embedding #80
Conversation
This file contains 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
Optimal Kernel for Embeding should looks like: // val_36 for result
// val_31 for weight
// val_8 for input sequence
void main6598825_e26_k0(float* val_36, float* val_31, float* val_8) {
for(int _gid0=0;(_gid0<=7);_gid0+=1) {
for(int _gid1=0;(_gid1<=29);_gid1+=1) {
val_36[240*0+30*_gid0+30*0+_gid1] = 0.0;
for(int _gid2=0;(_gid2<=29);_gid2+=1) {
val_36[240*0+30*_gid0+0+_gid1] += (!((30*0+30*0+1*_gid2+1*0)!=val_8[8*0+_gid0+0+0]) ? 1.0 : 0.0) * val_31[900*0+0+30*_gid2+_gid1];
}
}
}
} |
… not going to render broadcast?
|
最適化は後回しにして,一旦テストと速度検証のためのPipelineを作成する。(llama3をCompileするのが優先,その次に最適化) Don't guess, measure! |
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.
INDEX-COMPONENT
in MultiExpr. (Arange is an alias for Index-Components)(caten (!where (!eq (iconst 2) (ax+b `(3 3) 1 0)) (iconst 2) (iconst 3))) in a single line(batch_size, sequence_len)
loopsA[~] -> A[~]
があったら