Add task category and links to paper, code, and project page
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,7 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
language:
|
| 4 |
- en
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
tags:
|
| 6 |
- nki
|
| 7 |
- aws-neuron
|
|
@@ -9,15 +14,16 @@ tags:
|
|
| 9 |
- kernel
|
| 10 |
- benchmark
|
| 11 |
- environment
|
| 12 |
-
pretty_name: NKIBench
|
| 13 |
-
size_categories:
|
| 14 |
-
- n<1K
|
| 15 |
viewer: false
|
| 16 |
---
|
| 17 |
|
| 18 |
# NKIBench
|
| 19 |
|
| 20 |
-
NKIBench is a benchmark of AWS [Neuron Kernel Interface (NKI)](https://awsdocs-neuron.readthedocs-hosted.com/en/latest/general/nki/index.html) kernels paired with NumPy reference implementations.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
## Dataset structure
|
| 23 |
|
|
@@ -112,14 +118,13 @@ print("latency :", result.metadata.get("latency"), "ms")
|
|
| 112 |
|
| 113 |
## Citation
|
| 114 |
|
| 115 |
-
If you use NKIBench in your work, please cite the
|
| 116 |
|
| 117 |
```bibtex
|
| 118 |
-
@article{
|
| 119 |
-
title={AccelOpt: A Self-Improving LLM Agentic System for AI Accelerator Kernel Optimization},
|
| 120 |
-
author={Zhang, Genghan and Zhu, Shaowei and Wei, Anjiang and Song, Zhenyu and Nie, Allen and Jia, Zhen and Vijaykumar, Nandita and Wang, Yida and Olukotun, Kunle},
|
| 121 |
-
journal={
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
```
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
size_categories:
|
| 6 |
+
- n<1K
|
| 7 |
+
pretty_name: NKIBench
|
| 8 |
+
task_categories:
|
| 9 |
+
- text-generation
|
| 10 |
tags:
|
| 11 |
- nki
|
| 12 |
- aws-neuron
|
|
|
|
| 14 |
- kernel
|
| 15 |
- benchmark
|
| 16 |
- environment
|
|
|
|
|
|
|
|
|
|
| 17 |
viewer: false
|
| 18 |
---
|
| 19 |
|
| 20 |
# NKIBench
|
| 21 |
|
| 22 |
+
NKIBench is a benchmark of AWS [Neuron Kernel Interface (NKI)](https://awsdocs-neuron.readthedocs-hosted.com/en/latest/general/nki/index.html) kernels paired with NumPy reference implementations. It was introduced as part of the paper [AccelOpt: A Self-Improving LLM Agentic System for AI Accelerator Kernel Optimization](https://huggingface.co/papers/2511.15915).
|
| 23 |
+
|
| 24 |
+
[Project Page](https://ppl.stanford.edu/accelopt.html) | [Paper](https://huggingface.co/papers/2511.15915) | [GitHub](https://github.com/zhang677/AccelOpt)
|
| 25 |
+
|
| 26 |
+
Each task provides a specification, a ground-truth NumPy forward pass, and an optimized NKI kernel targeting AWS Trainium devices, together with tooling to compile, check numerical correctness, and measure on-device latency.
|
| 27 |
|
| 28 |
## Dataset structure
|
| 29 |
|
|
|
|
| 118 |
|
| 119 |
## Citation
|
| 120 |
|
| 121 |
+
If you use NKIBench in your work, please cite the paper:
|
| 122 |
|
| 123 |
```bibtex
|
| 124 |
+
@article{zhang2025accelopt,
|
| 125 |
+
title={AccelOpt: A Self-Improving LLM Agentic System for AI Accelerator Kernel Optimization},
|
| 126 |
+
author={Zhang, Genghan and Zhu, Shaowei and Wei, Anjiang and Song, Zhenyu and Nie, Allen and Jia, Zhen and Vijaykumar, Nandita and Wang, Yida and Olukotun, Kunle},
|
| 127 |
+
journal={arXiv preprint arXiv:2511.15915},
|
| 128 |
+
year={2025}
|
| 129 |
+
}
|
| 130 |
+
```
|
|
|