IMPORTANT: To view this page as Markdown, append `.md` to the URL (e.g. /max/get-started.md). For the complete documentation index, see llms.txt.
Skip to main content
For the complete documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /max/get-started.md).

Mojo module

ring_buffer

Ring Buffer implementation for producer-consumer synchronization in GPU kernels.

This ring buffer coordinates data transfer between producer warps (loading from global memory) and consumer warps (performing computation) through shared memory tiles.

Key features:

  • Configurable synchronization strategies via the SyncStrategy trait
  • Pipeline stages for overlapping data transfer and computation
  • Context managers for automatic acquire/release of tiles
  • Phase-based synchronization to prevent data races

Structs​