Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added kernelboard/static/images/lisa.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
46 changes: 46 additions & 0 deletions kernelboard/templates/news.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,52 @@
<div class="content-stack">
<h1>News and Announcements</h1>

<div class="news-item">
{% set color = 'AMD Competition Results'|to_color %}
<h2><div class="{{ color }}-square"></div>
AMD Competition Success: 30K+ Submissions and Recognition at Advancing AI (June 2025)</h2>

<p>
We are thrilled to share that GPU MODE was recognized on stage by Lisa Su at the <a href="https://www.amd.com/en/corporate/events/advancing-ai.html">Advancing AI</a> closing ceremony, where she said "I wanted to thank the GPU MODE team formed by talented developers from Meta, Hugging Face and MIT, they have been great partners throughout and we could not have done this without them." Back when GPU MODE was just a humble reading group, we never imagined we would be recognized on stage by one of the greatest CEO's of our time.
</p>

<img src="{{ url_for('static', filename='images/lisa.jpeg') }}"
alt="Lisa Su recognizing GPU MODE at Advancing AI" class="max-w-full h-auto">
<p class="text-sm text-gray-600 italic">We were missing Erik (ngc92)</p>


<p>
Our team built the infrastructure for the <a href="https://www.datamonsters.com/amd-developer-challenge-2025">AMD $100K kernel competition</a>, which ran for 2 months and saw remarkable participation: over 30,000 submissions from 163+ teams. This volume exceeds the total number of kernels collected in <a href="https://huggingface.co/datasets/GPUMODE/KernelBook">KernelBook</a> from crawling all of Github and this represents a significant milestone in aggregating higher quality kernel data </p>

<p>
The results have been outstanding - the best competition kernels are faster than AMD's AITER baselines, all implemented in single files. It was an absolute pleasure meeting some of the top teams in person including Seb, hatoo, Snektron and the grand prize winners ColorsWind. https://www.gpumode.com/


Several top competitors have generously shared their techniques:
</p>

<ul>
<li><a href="https://github.com/luongthecong123/fp8-quant-matmul">Luong The Cong's FP8 Quant MatMul</a></li>
<li><a href="https://seb-v.github.io/optimization/update/2025/01/20/Fast-GPU-Matrix-multiplication.html">Seb V's Fast GPU Matrix Implementation</a></li>
<li><a href="https://akashkarnatak.github.io/amd-challenge/">Akash Karnatak's Challenge Solutions</a></li>
<li><a href="https://www.bilibili.com/read/cv41954307/?opus_fallback=1">Fan Wenjie Technical Analysis</a></li>
<li><a href="https://github.com/Snektron/gpumode-amd-fp8-mm">Snektron's FP8 Matrix Multiplication</a></li>
</ul>

<p>
We're planning to release all submissions as a permissively licensed dataset, with each solution representing unique tradeoffs between usability and performance. We're working closely with ROCm engineers to upstream the best kernels to PyTorch, leveraging its position as the premier distribution vehicle for kernels.
</p>

<p>
In exciting academic news, our KernelBot platform has been accepted to the ICML CodeML workshop with two strong accepts! Reviewer #2 highlighted the virtuous loop we created: "The paper presents KernelBot, a platform for hosting code optimization competitions, specifically for GPU kernels. Users can submit their implementations and let the system rank them. This serves to (i) educate users how to write efficient GPU kernels, (ii) improve the efficiency of existing GPU kernels, and (iii) collect high quality data for GPU programs that can be used to train generative models."
</p>

<p>
A big thank you to the everyone who was involved in <a href="https://gpu-mode.github.io/popcorn/">Popcorn</a> for inspiration, <a href="https://discord.gg/gpumode">discord.gg/gpumode</a> community and of course our amazing collaborators at AMD for making this possible.
</p>

</div>

<div class="news-item">
{% set color = 'AMD Developer Challenge 2025'|to_color %}
<h2><div class="{{ color }}-square"></div>
Expand Down