From 24e7aed74bb2f5df09ee93c20bd0bc3126275274 Mon Sep 17 00:00:00 2001 From: Dan German Date: Thu, 12 Jun 2025 17:07:03 +0300 Subject: [PATCH] ramp.py: correct UOp and Ops import path from tinygrad.uop to tinygrad.uop.ops (#10791) --- docs/ramp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ramp.py b/docs/ramp.py index ab4323cb1d..46499852ce 100644 --- a/docs/ramp.py +++ b/docs/ramp.py @@ -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)