(*lst)
| 46 | return ssimplify(functools.reduce(uop_fxn, uops + ([python_fxn(nums)] if nums else []))) |
| 47 | def smax(*lst) -> sint: return _suop(argfix(*lst), UOp.maximum, max) |
| 48 | def smin(*lst) -> sint: return _suop(argfix(*lst), UOp.minimum, min) |
| 49 | def srender(x:sint) -> str: return x.render() if isinstance(x, UOp) else str(x) |
| 50 | def _align_left(*shapes:tuple[sint, ...]) -> tuple[tuple[sint, ...], ...]: |
| 51 | max_dim = max(len(s) for s in shapes) |
no test coverage detected
searching dependent graphs…