├── README.md ├── annotated_examples ├── classics │ ├── cross_entropy.py │ ├── geglu.py │ ├── layernorm.py │ ├── matmul.py │ └── swiglu.py └── gemlite │ ├── gemm.py │ └── gemm_splitK.py ├── assets └── logo.png └── backprop_math ├── cross_entropy.md ├── geglu.md ├── layernorm.md └── swiglu.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MekkCyber/TritonAcademy/HEAD/README.md -------------------------------------------------------------------------------- /annotated_examples/classics/cross_entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MekkCyber/TritonAcademy/HEAD/annotated_examples/classics/cross_entropy.py -------------------------------------------------------------------------------- /annotated_examples/classics/geglu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MekkCyber/TritonAcademy/HEAD/annotated_examples/classics/geglu.py -------------------------------------------------------------------------------- /annotated_examples/classics/layernorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MekkCyber/TritonAcademy/HEAD/annotated_examples/classics/layernorm.py -------------------------------------------------------------------------------- /annotated_examples/classics/matmul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MekkCyber/TritonAcademy/HEAD/annotated_examples/classics/matmul.py -------------------------------------------------------------------------------- /annotated_examples/classics/swiglu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MekkCyber/TritonAcademy/HEAD/annotated_examples/classics/swiglu.py -------------------------------------------------------------------------------- /annotated_examples/gemlite/gemm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MekkCyber/TritonAcademy/HEAD/annotated_examples/gemlite/gemm.py -------------------------------------------------------------------------------- /annotated_examples/gemlite/gemm_splitK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MekkCyber/TritonAcademy/HEAD/annotated_examples/gemlite/gemm_splitK.py -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MekkCyber/TritonAcademy/HEAD/assets/logo.png -------------------------------------------------------------------------------- /backprop_math/cross_entropy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MekkCyber/TritonAcademy/HEAD/backprop_math/cross_entropy.md -------------------------------------------------------------------------------- /backprop_math/geglu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MekkCyber/TritonAcademy/HEAD/backprop_math/geglu.md -------------------------------------------------------------------------------- /backprop_math/layernorm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MekkCyber/TritonAcademy/HEAD/backprop_math/layernorm.md -------------------------------------------------------------------------------- /backprop_math/swiglu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MekkCyber/TritonAcademy/HEAD/backprop_math/swiglu.md --------------------------------------------------------------------------------