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")