Files
tinygrad/test
Philip SinitsinandGitHub 76c10cd635 jit: don't memplan buffers reachable from live tensors (#16588)
The memory planner was suballocating BUFFERs created during JIT capture that are still referenced by external lazy tensor graphs, like the .grad tensors assigned by backward(). The replay then only writes the arena slices, so realizing such a tensor after the call reads freshly allocated memory and silently returns zeros. Hold every BUFFER reachable from a live Tensor instead of only the parameters of the return value; true internals are still planned. Fixes #16571.
2026-06-12 17:51:54 +03:00
..
2026-06-12 19:49:25 +09:00
2026-05-15 21:22:48 -04:00
2026-06-08 21:27:28 -04:00
2026-05-25 20:23:33 -04:00
2026-06-11 16:54:26 -04:00
2026-05-25 20:23:33 -04:00
2020-12-15 23:44:08 -08:00
2026-02-12 11:09:44 +08:00
2026-05-25 20:23:33 -04:00

Three groups of tests run in CI

backend -- tests that run on each backend
null -- tests that don't require any backend
unit -- tests that only run on a single backend in CI