Creates the schedule needed to realize these Tensor(s).
(self, *lst:Tensor)
| 232 | return create_linear_with_vars(big_sink) |
| 233 | |
| 234 | def schedule_linear(self, *lst:Tensor) -> UOp: |
| 235 | """Creates the schedule needed to realize these Tensor(s).""" |
| 236 | linear, var_vals = self.linear_with_vars(*lst) |
| 237 | assert len(var_vals) == 0 |
| 238 | return linear |
| 239 | |
| 240 | @disable_gc() |
| 241 | def realize(self, *lst:Tensor, do_update_stats=True) -> Tensor: |