| 16 | def __repr__(self): return f"Opt(op={self.op}, axis={self.axis}, arg={self.arg})" |
| 17 | |
| 18 | class KernelOptError(Exception): pass |
| 19 | def check(cond:bool, msg:str=""): |
| 20 | if not cond: raise KernelOptError(msg) |
no outgoing calls
no test coverage detected
searching dependent graphs…