Skip to content

Commit f48d2a0

Browse files
Log which quant ops are enabled/emulated. (Comfy-Org#13946)
1 parent 7c4d95d commit f48d2a0

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

comfy/ops.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1376,6 +1376,7 @@ def pick_operations(weight_dtype, compute_dtype, load_device=None, disable_fast_
13761376
if not fp8_compute:
13771377
disabled.add("float8_e4m3fn")
13781378
disabled.add("float8_e5m2")
1379+
logging.info("Native ops: {} {}".format(", ".join(QUANT_ALGOS.keys() - disabled), ", emulated ops: {}".format(", ".join(disabled)) if len(disabled) > 0 else ""))
13791380
return mixed_precision_ops(model_config.quant_config, compute_dtype, disabled=disabled)
13801381

13811382
if (

0 commit comments

Comments
 (0)