move opt under codegen (#11569)

This commit is contained in:
George Hotz
2025-08-07 14:19:17 -07:00
committed by GitHub
parent 702e38dc19
commit 82be8abfd2
64 changed files with 106 additions and 106 deletions

View File

@@ -8,8 +8,8 @@ from tinygrad.device import is_dtype_supported
from tinygrad.uop.ops import UOp, Ops
from tinygrad.helpers import getenv
from tinygrad.shape.shapetracker import ShapeTracker, View
from tinygrad.opt.search import Opt, OptOps
from tinygrad.opt.kernel import Kernel
from tinygrad.codegen.opt.search import Opt, OptOps
from tinygrad.codegen.opt.kernel import Kernel
from tinygrad.engine.realize import get_program
class TestLinearizerDumb(unittest.TestCase):