From 5bc73e644ddef1a1c2323d14895f423dcc1e6a98 Mon Sep 17 00:00:00 2001 From: George Hotz Date: Thu, 24 Jul 2025 16:20:53 -0700 Subject: [PATCH] noop continue --- tinygrad/renderer/ptx.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tinygrad/renderer/ptx.py b/tinygrad/renderer/ptx.py index 913035796c..b7873ea70e 100644 --- a/tinygrad/renderer/ptx.py +++ b/tinygrad/renderer/ptx.py @@ -176,6 +176,7 @@ class PTXRenderer(Renderer): name = "test" for u in uops: + if u.op is Ops.NOOP: continue if u.op is Ops.SINK: if u.arg is not None: name = u.arg.function_name continue