Fixed a typo in "simplify" (#10358)

This commit is contained in:
Elnur Rakhmatullin
2025-05-17 02:45:14 +05:00
committed by GitHub
parent ee5258328a
commit de2b323d97

View File

@@ -68,4 +68,4 @@ We have a simple framework in tinygrad for adding these ALU blocks and achieving
### Indexing
Indexing determines the address of the memory we need to load. GPUs often have less integer math resources than floating point math, so this can sometimes be the bottleneck. We have a symbolic math engine in our rewrite rules to simplifiy indexing before it's emitted to the kernel. Newer NVIDIA GPUs have a "Tensor Memory Accelerator" to assist with fast indexing, however, this is not supported in tinygrad yet.
Indexing determines the address of the memory we need to load. GPUs often have less integer math resources than floating point math, so this can sometimes be the bottleneck. We have a symbolic math engine in our rewrite rules to simplify indexing before it's emitted to the kernel. Newer NVIDIA GPUs have a "Tensor Memory Accelerator" to assist with fast indexing, however, this is not supported in tinygrad yet.