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"