Profiling Triton
May 1, 2025
There are a couple of different options to profile a Triton kernel.
Needless text
May 1, 2025
There are a couple of different options to profile a Triton kernel.
April 18, 2025
JEPAis an example of a predictive coding architecture. Predictive coding is the idea that the brain works by predicting the next sensory input and learns from the error between the prediction and the actual input. Hierarchies of this kind of prediction allow higher level elements to predict the outputs of lower-level elements, building up deeper and more complex semantics.
April 17, 2025
As Thomas posted on the Python Discuss board there is a discord for discussing Free-Threaded/NoGil Python: https://discord.gg/rqgHCDqdRr
April 17, 2025
April 12, 2025
April 11, 2025
April 10, 2025
April 5, 2025
April 4, 2025
Dynamic shapes are one of the more distinctive parts of torch.compile. Rather than specializing a graph to static shapes (which works in many cases!), PyTorch’s approach allows a single graph to work for a variety of sizes, so things like sequence length or batch size can vary. It does this by reasoning about shapes symbolically: instead of using fixed shape values, it uses placeholders and infers rules that constrain those shapes.
April 3, 2025