From 051aab54813ea845d11797d24fbc5f4d7e6cb535 Mon Sep 17 00:00:00 2001 From: nimlgen <138685161+nimlgen@users.noreply.github.com> Date: Sat, 1 Nov 2025 22:48:17 +0800 Subject: [PATCH] open viz with sqtt flags (#13001) --- tinygrad/uop/ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinygrad/uop/ops.py b/tinygrad/uop/ops.py index 6f61fed988..f404df9c3f 100644 --- a/tinygrad/uop/ops.py +++ b/tinygrad/uop/ops.py @@ -1125,7 +1125,7 @@ if TRACK_MATCH_STATS or PROFILE: def launch_viz(env_str:str, data:str): os.environ[env_str] = "0" os.environ[f"{env_str}_DATA"] = data - if not int(os.getenv("VIZ", "0")) and not int(os.getenv("PROFILE", "0")) and not int(os.getenv("SQTT", "0")) and not CI: + if not int(os.getenv("VIZ", "0")) and not int(os.getenv("PROFILE", "0")) and not CI: args = ['--kernels', getenv("VIZ_DATA", "")] if getenv("VIZ_DATA", "") else [] args += ['--profile', getenv("PROFILE_DATA", "")] if getenv("PROFILE_DATA", "") else [] viz_path = pathlib.Path(__file__).resolve().parent.parent / "viz" / "serve.py"