mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-04-19 02:43:30 +00:00
Merge branch 'hide-triton-error-windows' of https://github.com/pythongosssss/ComfyUI
This commit is contained in:
commit
1cf5b6125b
4
main.py
4
main.py
@ -7,6 +7,10 @@ import heapq
|
|||||||
import traceback
|
import traceback
|
||||||
import asyncio
|
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:
|
try:
|
||||||
import aiohttp
|
import aiohttp
|
||||||
from aiohttp import web
|
from aiohttp import web
|
||||||
|
Loading…
Reference in New Issue
Block a user