# cutlass-notes **Repository Path**: magicor/cutlass-notes ## Basic Information - **Project Name**: cutlass-notes - **Description**: https://github.com/ArthurinRUC/cutlass-notes.git - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-06 - **Last Updated**: 2025-11-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CUTLASS Notes The CUTLASS notes series will begin with a minimal GEMM implementation, gradually expand to incorporate CuTe and various CUTLASS components, as well as features of new architectures, e.g. Hopper and Blackwell, ultimately achieving a high-performance fused GEMM operator. ## Usage ```bash git clone https://github.com/ArthurinRUC/cutlass-notes.git # clone cutlass cd cutlass-notes git submodule update --init --recursive ``` ## Run sample code All example code in this GitHub repository can be compiled and run by simply executing the Python script. For example: ```bash cd 01-minimal-gemm python minimal_gemm.py ``` ## Note list | Notes | Summary | Links | |---------------------------|------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------| | **00-Intro** | Brief introduction to CUTLASS | [intro](https://zhuanlan.zhihu.com/p/1937220431728845963) | | **01-minimal-gemm** |