Files
sunnypilot/tinygrad_repo/docs/developer/layout.md
T
github-actions[bot] 13aee3754b sunnypilot v2026.002.000 release
date: 2026-07-20T11:52:50
master commit: bae7e49626
2026-07-20 11:53:51 +00:00

1.1 KiB

tinygrad directory layout

This explains the flow of a big graph down to programs.

Directories are listed in order of how they are processed.


tinygrad/schedule

Group UOps into kernels.

::: tinygrad.schedule.rangeify.get_kernel_graph options: members: false show_labels: false show_source: false


tinygrad/codegen/opt

Transforms the ast into an optimized ast. This is where BEAM search and heuristics live.


tinygrad/codegen

Transform the optimized ast into a linearized and rendered program.

::: tinygrad.codegen.to_program options: members: false show_labels: false show_source: false


tinygrad/renderer

Transform the linearized list of UOps into a program, represented as a string.

::: tinygrad.renderer.Renderer options: members: - render show_labels: false show_source: false


tinygrad/engine

Abstracted high level interface to the runtimes.

::: tinygrad.engine.realize.to_program options: members: false show_labels: false show_source: false