From 8230919053878929161f34857cc044751b4638d9 Mon Sep 17 00:00:00 2001 From: comfyanonymous <121283862+comfyanonymous@users.noreply.github.com> Date: Mon, 3 Nov 2025 19:00:23 -0500 Subject: [PATCH] Remove debug print for tensor shapes --- comfy/quant_ops.py | 1 - 1 file changed, 1 deletion(-) diff --git a/comfy/quant_ops.py b/comfy/quant_ops.py index 0281b49db..fa705fe93 100644 --- a/comfy/quant_ops.py +++ b/comfy/quant_ops.py @@ -461,7 +461,6 @@ def fp8_addmm(func, args, kwargs): plain_input, scale_a = TensorCoreFP8Layout.get_plain_tensors(input_tensor) plain_weight, scale_b = TensorCoreFP8Layout.get_plain_tensors(weight) - print(plain_input.shape, plain_weight.shape, bias.shape) output = torch._scaled_mm( plain_input.contiguous(), plain_weight,