"...git@developer.sourcefind.cn:chenpangpang/diffusers.git" did not exist on "727434c206f6c22b746e460293035a1324f0bc13"
Commit 1cf5b612 authored by comfyanonymous's avatar comfyanonymous
Browse files

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

parents 638f9245 07872996
...@@ -7,6 +7,10 @@ import heapq ...@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment