diff --git a/tinygrad/shape/symbolic.py b/tinygrad/shape/symbolic.py index b5492b31bf..044772e192 100644 --- a/tinygrad/shape/symbolic.py +++ b/tinygrad/shape/symbolic.py @@ -167,7 +167,6 @@ class OpNode(Node): def get_bounds(self) -> Tuple[int, int]: raise NotImplementedError("must be implemented") class LtNode(OpNode): - def __floordiv__(self, b: Union[Node, int], _=False): return (self.a//b) < (self.b//b) def get_bounds(self) -> Tuple[int, int]: if isinstance(self.b, int): return (1, 1) if self.a.max < self.b else (0, 0) if self.a.min >= self.b else (0, 1) return (1, 1) if self.a.max < self.b.min else (0, 0) if self.a.min >= self.b.max else (0, 1)