Deleted broken script that isn't used.#66
Open
Tyler-Hilbert wants to merge 139 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
Added details for Lecture 70 including speaker and slides link.
* Add first version of notebook * profile * Polish * fix indexing * Fix * add thunder * Final run * Typo * Add sdpa backends benchmarks * Fix thunder and parallelise outer loop * Clean notebook run * Run notebook
Co-authored-by: Mark Saroufim <marksaroufim@meta.com>
Co-authored-by: Mark Saroufim <marksaroufim@meta.com>
Add Lecture 72 (Attention Sinks + StreamingLLM)
Add Lecture 71 Slides (FlexOlmo)
Add Songlin's Talk on PaTH and RoPE (Lecture 74)
Add Songlin's Lecture (74) to README
* Add lecture 103 layout algebra slides * Fix lecture 103 speaker names
* add lecture 104 gluon notes * Delete lecture_104/README.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.
The script
main.pyfrom Lecture 1 doesn't work becausecpp_sources=''. It looks like you intended to implement a cpp function but instead created a new fileload_inline.py.I deleted the broken script as it's not mentioned or used in your lecture.