This commit is contained in:
lvmin 2023-08-10 04:27:22 -07:00
parent 6b5c8dfa74
commit fb1c68ab0c
1 changed files with 5 additions and 0 deletions

View File

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