Browse Source

Merge branch 'hide-triton-error-windows' of https://github.com/pythongosssss/ComfyUI

pull/10/head^2
comfyanonymous 2 years ago
parent
commit
1cf5b6125b
  1. 4
      main.py

4
main.py

@ -7,6 +7,10 @@ import heapq
import traceback
import asyncio
if os.name == "nt":
import logging
logging.getLogger("xformers").addFilter(lambda record: 'A matching Triton is not available' not in record.getMessage())
try:
import aiohttp
from aiohttp import web

Loading…
Cancel
Save