From fb1c68ab0c98f795e520e37935361f48f7470349 Mon Sep 17 00:00:00 2001 From: lvmin Date: Thu, 10 Aug 2023 04:27:22 -0700 Subject: [PATCH] i --- modules/launch_util.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/launch_util.py b/modules/launch_util.py index 0f594770..77cd2441 100644 --- a/modules/launch_util.py +++ b/modules/launch_util.py @@ -4,10 +4,15 @@ import importlib.util import subprocess import sys import re +import logging from functools import lru_cache +logging.getLogger("torch.distributed.nn").setLevel(logging.ERROR) # sshh... +logging.getLogger("xformers").addFilter(lambda record: 'A matching Triton is not available' not in record.getMessage()) + + python = sys.executable git = os.environ.get('GIT', "git") default_command_live = (os.environ.get('LAUNCH_LIVE_OUTPUT') == "1")