we don't float anymore

This commit is contained in:
2026-07-21 18:33:34 -07:00
parent 048f510b51
commit 303c5d3259
+1 -1
View File
@@ -9,7 +9,7 @@ def linearize(sink:UOp) -> list[UOp]:
# this is a toposort with priority
lst = list(sink.toposort())
out_degree:defaultdict[UOp, int] = defaultdict(int)
priorities:dict[UOp, tuple[int|float, int, Any]] = {}
priorities:dict[UOp, tuple[int, int, Any]] = {}
# get consumers and assign priorities
# NOTE: this requires the lst be locally toposorted