We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c03884 commit edee33fCopy full SHA for edee33f
comfy/quant_ops.py
@@ -13,6 +13,13 @@
13
get_layout_class,
14
)
15
_CK_AVAILABLE = True
16
+ if torch.version.cuda is None:
17
+ ck.registry.disable("cuda")
18
+ else:
19
+ cuda_version = tuple(map(int, str(torch.version.cuda).split('.')))
20
+ if cuda_version < (13,):
21
22
+
23
ck.registry.disable("triton")
24
for k, v in ck.list_backends().items():
25
logging.info(f"Found comfy_kitchen backend {k}: {v}")
0 commit comments