From e243e709a707dbb85457199787b9dd1e162fc071 Mon Sep 17 00:00:00 2001 From: chenyu Date: Thu, 28 Nov 2024 12:44:22 -0500 Subject: [PATCH] BLOCK ops in Ops (#7945) did this break conv speed? --- tinygrad/ops.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tinygrad/ops.py b/tinygrad/ops.py index 1e87926f0c..b9535bdb02 100644 --- a/tinygrad/ops.py +++ b/tinygrad/ops.py @@ -107,6 +107,9 @@ class Ops(FastEnum): EMPTY = auto() BUFFER_VIEW = auto() + # blocks in linearizer + BLOCK = auto(); BLOCKSTART = auto(); BLOCKFORK = auto(); BLOCKEND = auto() # noqa: E702 + EXPAND = auto() CONTRACT = auto() VIEW = auto()