import time, inspect from collections import deque from tinygrad.uop.ops import UOp, Ops, UOpMetaClass, track_rewrites, graph_rewrite, gate_kernel_sink, KernelInfo from tinygrad.uop.spec import type_verify, spec_tensor from tinygrad.helpers import DEBUG, cpu_profile, TracingKey, SPEC, pluralize, SCACHE, BASEDIR, partition # **** schedule linearizer # unwrap VIEW/CAST/etc to find the actual data source (kernel output, buffer, or multi-device op) def _unwrap_src(s: UOp) -> UOp: while len(s.src) and s.op not in {Ops.AFTER, Ops.BUFFER, Ops.PARAM, Ops.MSELECT, Ops.MSTACK, Ops.BIND}: s = s.src[0] return s def _split_after(after: UOp) -> tuple[tuple[UOp, ...], tuple[UOp, ...]]: kernels, remaining = partition(after.src[1:], lambda s: s.op in {Ops.CALL, Ops.END}) deps, remaining = partition(remaining, lambda s: s.op is Ops.AFTER) if invalid := [s for s in remaining if s.op is not Ops.STORE]: raise AssertionError(f"AFTER source should be CALL, END, STORE, or AFTER, not {invalid[0].op}") return tuple(kernels), tuple(deps) def create_schedule(sched_sink:UOp) -> UOp: with cpu_profile(TracingKey("toposort sched_sink")): # build kernel dependency graph: edges from producer kernel to consumer kernels children: dict[UOp, list[UOp]] = {} in_degree: dict[UOp, int] = {} for u in sched_sink.toposort(gate_kernel_sink): if u.op is not Ops.AFTER: continue kernels, after_deps = _split_after(u) for k in kernels: in_degree.setdefault(k, 0) if k.op is Ops.END: assert k.src[0].op is Ops.CALL, f"END src[0] should be KERNEL, not {k.src[0].op}" kernel_deps = k.src[0].src[1:] if k.op is Ops.END else k.src[1:] for s in kernel_deps + after_deps: match (s := _unwrap_src(s)).op: case Ops.AFTER: for t in _split_after(s)[0]: children.setdefault(t, []).append(k) in_degree[k] += 1 case Ops.MSELECT | Ops.MSTACK: for ss in s.src: if ss.op is Ops.MSELECT: ss = ss.src[0] if ss.op not in {Ops.BUFFER, Ops.PARAM}: assert ss.op is Ops.AFTER, f"ss.op is not AFTER, it's {ss.op}" for t in _split_after(ss)[0]: children.setdefault(t, []).append(k) in_degree[k] += 1 case Ops.BUFFER | Ops.PARAM | Ops.BIND: pass # BUFFER/PARAM is already realized, BIND is a bound variable (not a buffer dependency) case _: raise RuntimeError(f"input to kernel must be AFTER, BUFFER, PARAM, MSELECT, MSTACK, or BIND, not {s.op}") with cpu_profile(TracingKey("linearize schedule")): queue: deque[UOp] = deque(k for k,v in in_degree.items() if v == 0) linearized: list[UOp] = [] while len(queue): rk = queue.popleft() if rk.op is Ops.LINEAR: linearized.extend(rk.src) else: k = rk.src[0] if rk.op is Ops.END else rk assert k.op is Ops.CALL, f"unexpected op in queue: {k.op}" buf_uops = tuple(_unwrap_src(s).buf_uop for s in k.src[1:] if s.op is not Ops.BIND) linearized.append(k.src[0].call(*buf_uops, metadata=k.arg.metadata)) for x in children.get(rk, []): in_degree[x] -= 1 if in_degree[x] == 0: queue.append(x) return UOp(Ops.LINEAR, src=tuple(linearized)) from tinygrad.schedule.memory import memory_plan_rewrite from tinygrad.engine.realize import capturing, pm_flatten_linear from tinygrad.schedule.rangeify import get_kernel_graph from tinygrad.helpers import CAPTURING from tinygrad.uop.ops import PatternMatcher, UPat def create_new_buffer(ctx:tuple[dict[UOp, UOp], tuple[UOp, ...]], b:UOp): if (ret:=ctx[0].get(b, None)) is None: ctx[0][b] = ret = UOp.new_buffer(b.device, b.arg, b.dtype) return ret pm_post_sched_cache = PatternMatcher([ (UPat(Ops.PARAM, name="x"), lambda ctx,x: ctx[1][x.arg]), # create new BUFFERs for LUNIQUE BUFFERs from rangeify (UPat(Ops.BUFFER, src=(UPat(Ops.LUNIQUE), UPat(Ops.DEVICE)), name="b"), create_new_buffer), ]) pm_resolve_linear_call = PatternMatcher([ # call LINEAR is resolved here (UPat(Ops.CALL, src=(UPat(Ops.LINEAR),), name="linear_call", allow_any_len=True), lambda linear_call: graph_rewrite(linear_call.src[0], pm_post_sched_cache, ctx=({}, linear_call.src[1:]), walk=True, name="params to buffers")), ])+pm_flatten_linear schedule_cache: dict[bytes, UOp] = {} # ctx is just for DEBUG on inner def lower_sink_to_linear(function:UOp) -> UOp|None: st = time.perf_counter() if isinstance(function.arg, KernelInfo): return None cache_key = function.key if not SCACHE or (sc_ret:=schedule_cache.get(cache_key, None)) is None: if SPEC: type_verify(function, spec_tensor) # support recursive CALLs linear = create_schedule(get_kernel_graph(function)) if SCACHE: schedule_cache[cache_key] = linear else: # schedule cache hit linear = sc_ret if (DEBUG >= 1 and len(linear.src) > 1) or DEBUG >= 3: for frm in inspect.stack(): if frm.filename == "": continue if frm.filename.startswith(str(BASEDIR / "apps")): break if not frm.filename.startswith(str(BASEDIR)) and not frm.filename.endswith("/contextlib.py"): break else: frm = None print(f"scheduled {len(linear.src):5d} kernels in {(time.perf_counter()-st)*1000:8.2f} ms"+\ f" | {' cache hit' if SCACHE and sc_ret is not None else 'CACHE MISS'} {cache_key.hex()[:8]}"+\ f" | {len(UOpMetaClass.ucache):7d} uops in cache"+("" if frm is None else f" | {frm.filename}:{frm.lineno}")) return linear pm_schedule = PatternMatcher([ (UPat(Ops.SINK, name="function"), lower_sink_to_linear), ]) @track_rewrites(lambda _,ret: f"Schedule {pluralize('Kernel', len(ret[0].src))}") def create_linear_with_vars(big_sink:UOp) -> tuple[UOp, dict[str, int]]: # big_sink srcs are all the Tensors linear_call = graph_rewrite(big_sink, pm_schedule, name="schedule to linear", enter_calls=True) # this recursively resolves the linear_call and allocates buffers linear = graph_rewrite(linear_call, pm_resolve_linear_call, name="resolve linear call") # vars used in the schedule used_vars = set().union(*[{v.expr for v in si.src[0].variables()} for si in linear.src]) # get var_vals var_vals: dict[str, int] = {} for b in big_sink.src[1:]: if b.op is Ops.BIND: nm = b.src[0].expr if nm not in used_vars: continue val = b.src[1].arg if var_vals.get(nm, val) != val: raise RuntimeError(f"bind mismatch on {nm}, {var_vals[nm]} != {val}") var_vals[nm] = val # jit captures this schedule, no need to execute. if len(capturing) and CAPTURING: capturing[0].add_linear(linear, var_vals) return UOp(Ops.LINEAR, src=()), var_vals held_bufs = ({b for b in linear_call.src[1:] if b.op is Ops.BUFFER} if linear_call.op is Ops.CALL else set()) return memory_plan_rewrite(linear, held_bufs), var_vals