mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-09-02 07:07:03 +08:00
change print to logging.info
This commit is contained in:
parent
9a70423973
commit
27720a1e45
@ -25,13 +25,13 @@ if model_management.sage_attention_enabled():
|
|||||||
from sageattn import sageattn_blackwell
|
from sageattn import sageattn_blackwell
|
||||||
SAGE_ATTENTION_3_AVAILABLE = True
|
SAGE_ATTENTION_3_AVAILABLE = True
|
||||||
sage_attention_available = True
|
sage_attention_available = True
|
||||||
print("Found SageAttention3 (sageattn package)")
|
logging.info("Found SageAttention3 (sageattn package)")
|
||||||
|
|
||||||
except ImportError:
|
except ImportError:
|
||||||
try:
|
try:
|
||||||
from sageattention import sageattn
|
from sageattention import sageattn
|
||||||
sage_attention_available = True
|
sage_attention_available = True
|
||||||
print("Found SageAttention2 (sageattention package)")
|
logging.info("Found SageAttention2 (sageattention package)")
|
||||||
except ModuleNotFoundError as e:
|
except ModuleNotFoundError as e:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user