├── .gitignore ├── LICENSE ├── README.md ├── kernel_overview.md └── kernels ├── 0000_template.md ├── 0001_Triton_RMSNorm+Residual.md ├── 0002_Flash-Decoding_Split-KV_Attention.md ├── 0003_Cross_entropy_loss.md ├── 0004_Geglu.md ├── 0005_RMSNorm.md ├── 0006_Rope_Embedding.md ├── 0007_Swiglu.md ├── 0008_Gemm_Int4.md ├── 0009_Gemm_Int8.md ├── 0010_Conv2D.md ├── 0011_Add.md ├── 0012_Patching.md ├── 0013_Sparse_Matmul.md ├── 0014_Fused_Linear_Cross_Entropy.md └── 0015_GPTQ_Triton.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/README.md -------------------------------------------------------------------------------- /kernel_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernel_overview.md -------------------------------------------------------------------------------- /kernels/0000_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0000_template.md -------------------------------------------------------------------------------- /kernels/0001_Triton_RMSNorm+Residual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0001_Triton_RMSNorm+Residual.md -------------------------------------------------------------------------------- /kernels/0002_Flash-Decoding_Split-KV_Attention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0002_Flash-Decoding_Split-KV_Attention.md -------------------------------------------------------------------------------- /kernels/0003_Cross_entropy_loss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0003_Cross_entropy_loss.md -------------------------------------------------------------------------------- /kernels/0004_Geglu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0004_Geglu.md -------------------------------------------------------------------------------- /kernels/0005_RMSNorm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0005_RMSNorm.md -------------------------------------------------------------------------------- /kernels/0006_Rope_Embedding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0006_Rope_Embedding.md -------------------------------------------------------------------------------- /kernels/0007_Swiglu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0007_Swiglu.md -------------------------------------------------------------------------------- /kernels/0008_Gemm_Int4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0008_Gemm_Int4.md -------------------------------------------------------------------------------- /kernels/0009_Gemm_Int8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0009_Gemm_Int8.md -------------------------------------------------------------------------------- /kernels/0010_Conv2D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0010_Conv2D.md -------------------------------------------------------------------------------- /kernels/0011_Add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0011_Add.md -------------------------------------------------------------------------------- /kernels/0012_Patching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0012_Patching.md -------------------------------------------------------------------------------- /kernels/0013_Sparse_Matmul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0013_Sparse_Matmul.md -------------------------------------------------------------------------------- /kernels/0014_Fused_Linear_Cross_Entropy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0014_Fused_Linear_Cross_Entropy.md -------------------------------------------------------------------------------- /kernels/0015_GPTQ_Triton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpu-mode/triton-index/HEAD/kernels/0015_GPTQ_Triton.md --------------------------------------------------------------------------------