add mask to matmul kernel in lecture 14#52
Open
noklam wants to merge 110 commits into
Open
Conversation
fix the indices typo.
If tpb.x = tbp.y and blocks.x = blocks.y, then the original way gives the correct result. Otherwise, not correct.
```
tpb = ns(x=16,y=16)
blocks = ns(x=math.ceil(w/tpb.x), y=math.ceil(h/tpb.y))
```
Tiny index fix
Fix readme typo
…etup fix: update environment setup for session 4
rectangle matmul with shared memory python
shared mem matmul cuda
Triton Internals Slides and Code
Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com>
Fix bug in `triton_util.py`
Add lecture 30
Fixed typo in image
[refactor] replace hardcoded conda env, remove deprecated FindCUDA.cmake, added logic regarding libtorch download
* Slides/materials for Lecture 31 * Update README.md --------- Co-authored-by: Mark Saroufim <marksaroufim@meta.com>
Add Lecture 32 - Unsloth
* add lecture 33 slides and tutorial links * add README for folder_033
…de#39) * docs: add SGLang Performance Optimization GPU MODE talk slide * upd
add the slide_001 offered in google doc
Fix format
Create Qs.md
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
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.
fix #51
@UmerHA