(dev)
| 86 | raise JitError(f"JIT return contains non-Tensor value of type {type(ret).__name__}") |
| 87 | |
| 88 | def graph_class(dev): return dev.graph.func if isinstance(dev.graph, functools.partial) else dev.graph |
| 89 | |
| 90 | class GraphRunner: |
| 91 | def __init__(self, linear:UOp, input_uops:tuple[UOp, ...]=()): |
no outgoing calls
searching dependent graphs…