ramp.py: correct UOp and Ops import path from tinygrad.uop to tinygrad.uop.ops (#10791)

This commit is contained in:
Dan German
2025-06-12 10:07:03 -04:00
committed by GitHub
parent c066baea65
commit 24e7aed74b
+1 -1
View File
@@ -239,7 +239,7 @@ print("******* PART 3 *******")
# it's much simpler than what's in LLVM or MLIR
from tinygrad import dtypes
from tinygrad.uop import UOp, Ops
from tinygrad.uop.ops import UOp, Ops
# first, we'll construct some const UOps
a = UOp(Ops.CONST, dtypes.int, arg=2)