index.json 6.65 KB
Newer Older
1
2
{
  "schema_version": 1,
whlwhlwhl's avatar
whlwhlwhl committed
3
  "description": "Complementary kernel knowledge map for Humanize-driven GPU kernel optimization. Lists code and knowledge repositories that have no curated PR diffs in the local Route A corpus (NVIDIA developer samples, Colfax research kernels, simveit micro-tutorials, Hygon/DCU optimization references); each framework entry points to upstream repos, kernel directories, and source guides. Topic entries map kernel topics to per-framework references for live clone/grep workflows. Frameworks already covered by Route A PR bundles (SGLang, vLLM, TensorRT-LLM, PyTorch, FlashAttention, FlashInfer, CUTLASS/CuTe, CCCL, Triton, DeepGEMM, ThunderKittens, TileLang, QuACK, DeepSeek TileKernels) are intentionally excluded.",
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
  "frameworks": [
    {
      "id": "nvidia-code-samples",
      "name": "NVIDIA Developer Code Samples",
      "repo": "NVIDIA-developer-blog/code-samples",
      "url": "https://github.com/NVIDIA-developer-blog/code-samples",
      "kernel_paths": [
        "posts",
        "Samples",
        "src",
        "README.md"
      ],
      "tags": [
        "cuda-samples",
        "gemm",
        "transpose",
        "coalescing",
        "shared-memory",
        "bank-conflicts",
        "reduction",
        "occupancy"
      ]
    },
    {
      "id": "simveit-effective-transpose",
      "name": "simveit effective_transpose",
      "repo": "simveit/effective_transpose",
      "url": "https://github.com/simveit/effective_transpose",
      "kernel_paths": [
        ".",
        "src",
        "examples",
        "README.md"
      ],
      "tags": [
        "cute-dsl",
        "quack",
        "gemm",
        "tma",
        "wgmma",
        "swizzle",
        "transpose",
        "rmsnorm",
        "block-scaled",
        "nvfp4",
        "gdn",
        "hopper",
        "blackwell"
      ]
    },
    {
      "id": "simveit-load-and-store",
      "name": "simveit load_and_store",
      "repo": "simveit/load_and_store",
      "url": "https://github.com/simveit/load_and_store",
      "kernel_paths": [
        ".",
        "src",
        "examples",
        "README.md"
      ],
      "tags": [
        "cute-dsl",
        "load-store",
        "gemm",
        "tma",
        "wgmma",
        "shared-memory",
        "hopper",
        "blackwell"
      ]
    },
    {
      "id": "colfax-article-src",
      "name": "Colfax article source kernels",
      "repo": "ColfaxResearch/cfx-article-src",
      "url": "https://github.com/ColfaxResearch/cfx-article-src",
      "kernel_paths": [
        "tma",
        "pipeline-gemm",
        "streamk",
        "transpose-cute",
        "cutlass_gemm"
      ],
      "tags": [
        "cutlass",
        "cute",
        "cute-dsl",
        "gemm",
        "attention",
        "tma",
        "wgmma",
        "stream-k",
        "persistent",
        "transpose",
        "block-scaled",
        "blackwell",
        "hopper"
      ]
    },
    {
      "id": "colfax-cutlass-kernels",
      "name": "Colfax CUTLASS kernels",
      "repo": "ColfaxResearch/cutlass-kernels",
      "url": "https://github.com/ColfaxResearch/cutlass-kernels",
      "kernel_paths": [
        "src",
        "lib/gemm",
        "include",
        "examples",
        "README.md"
      ],
      "tags": [
        "cutlass",
        "cute",
        "gemm",
        "tma",
        "wgmma",
        "stream-k",
        "persistent",
        "blackwell",
        "hopper"
      ]
whlwhlwhl's avatar
whlwhlwhl committed
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
    },
    {
      "id": "hygon-hip-kernel-optimizer",
      "name": "Hygon HIP Kernel Optimizer Skill",
      "repo": "yuguo-Jack/cuda-optimized-skill",
      "url": "https://github.com/yuguo-Jack/cuda-optimized-skill",
      "kernel_paths": [
        "skills/hygon-hip-kernel-optimizer/SKILL.md",
        "skills/hygon-hip-kernel-optimizer/references/optimization_catalog.md",
        "skills/hygon-hip-kernel-optimizer/references/dcu_metrics_guide.md",
        "skills/hygon-hip-kernel-optimizer/references/method_registry.json",
        "skills/hygon-hip-kernel-optimizer/references/dcu_isa_signatures.json",
        "skills/hygon-hip-kernel-optimizer/examples/walkthrough.md"
      ],
      "tags": [
        "dcu",
        "hygon",
        "hip",
        "rocm",
        "ck-tile",
        "mmac",
        "wave64",
        "hipprof",
        "dccobjdump",
        "sqtt"
      ]
153
154
155
156
157
158
159
160
161
162
    }
  ],
  "topics": [
    {
      "id": "attention",
      "name": "Attention / FMHA / Paged",
      "applies_to": [
        "simveit-effective-transpose",
        "simveit-load-and-store",
        "colfax-article-src",
whlwhlwhl's avatar
whlwhlwhl committed
163
164
        "colfax-cutlass-kernels",
        "hygon-hip-kernel-optimizer"
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
      ],
      "tags": [
        "attention",
        "fmha",
        "paged",
        "kv-cache",
        "softmax",
        "online"
      ]
    },
    {
      "id": "matmul-gemm",
      "name": "GEMM / Tensor-Core matmul",
      "applies_to": [
        "nvidia-code-samples",
        "simveit-effective-transpose",
        "simveit-load-and-store",
        "colfax-article-src",
whlwhlwhl's avatar
whlwhlwhl committed
183
184
        "colfax-cutlass-kernels",
        "hygon-hip-kernel-optimizer"
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
      ],
      "tags": [
        "gemm",
        "matmul",
        "tensor-core",
        "wgmma",
        "tma",
        "epilogue"
      ]
    },
    {
      "id": "moe",
      "name": "Mixture of Experts",
      "applies_to": [
        "simveit-effective-transpose",
        "simveit-load-and-store",
        "colfax-article-src",
whlwhlwhl's avatar
whlwhlwhl committed
202
203
        "colfax-cutlass-kernels",
        "hygon-hip-kernel-optimizer"
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
      ],
      "tags": [
        "moe",
        "fused-moe",
        "grouped-gemm",
        "align-block-size",
        "top-k",
        "permute"
      ]
    },
    {
      "id": "normalization",
      "name": "RMSNorm / LayerNorm fused norms",
      "applies_to": [
        "nvidia-code-samples",
whlwhlwhl's avatar
whlwhlwhl committed
219
220
        "simveit-effective-transpose",
        "hygon-hip-kernel-optimizer"
221
222
223
224
225
226
227
228
229
230
231
232
233
      ],
      "tags": [
        "rmsnorm",
        "layernorm",
        "fused-add-norm",
        "qk-norm",
        "qknorm"
      ]
    },
    {
      "id": "activation-fusion",
      "name": "Activation / element-wise fusion",
      "applies_to": [
whlwhlwhl's avatar
whlwhlwhl committed
234
235
        "simveit-effective-transpose",
        "hygon-hip-kernel-optimizer"
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
      ],
      "tags": [
        "silu",
        "gelu",
        "swiglu",
        "fused-add",
        "fused-residual"
      ]
    },
    {
      "id": "quantization-fp8",
      "name": "FP8 / FP4 / INT8 quantization",
      "applies_to": [
        "simveit-effective-transpose",
        "simveit-load-and-store",
        "colfax-article-src",
whlwhlwhl's avatar
whlwhlwhl committed
252
253
        "colfax-cutlass-kernels",
        "hygon-hip-kernel-optimizer"
254
255
256
257
258
259
260
261
262
263
264
265
266
267
      ],
      "tags": [
        "fp8",
        "fp4",
        "int8",
        "awq",
        "gptq",
        "block-scaled",
        "per-tensor",
        "per-channel"
      ]
    }
  ]
}