This commit is contained in:
parent
6b5c8dfa74
commit
fb1c68ab0c
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in New Issue