From 0b050b56278cd26bbdaefe5f116c159c868ba1d6 Mon Sep 17 00:00:00 2001 From: Markus Hoehnerbach Date: Wed, 4 Feb 2026 23:48:58 +0000 Subject: [PATCH] short readme for flex flash --- flash_attn/cute/README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/flash_attn/cute/README.md b/flash_attn/cute/README.md index e69de29bb2d..03f48654b51 100644 --- a/flash_attn/cute/README.md +++ b/flash_attn/cute/README.md @@ -0,0 +1,26 @@ +# Flash Attention CUTE + +## Development Installation + +1. Clone the repository (if you haven't already): + ```bash + git clone https://github.com/Dao-AILab/flash-attention.git + cd flash-attention/cute + ``` + +2. Install in editable mode with dev dependencies: + ```bash + pip install -e "./cute[dev]" + ``` + +## Running Tests + +```bash +pytest tests/cute/ +``` + +## Linting + +```bash +ruff check flash_attn/cute/ +```