From 9c41bc8d10a9906d82dd91d3ee62f0a8bae91015 Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Mon, 23 Sep 2024 02:32:29 -0400 Subject: [PATCH] Remove useless line. --- comfy/ops.py | 1 - 1 file changed, 1 deletion(-) diff --git a/comfy/ops.py b/comfy/ops.py index 1b386dba..f9411ba5 100644 --- a/comfy/ops.py +++ b/comfy/ops.py @@ -260,7 +260,6 @@ def fp8_linear(self, input): if len(input.shape) == 3: inn = input.reshape(-1, input.shape[2]).to(dtype) - non_blocking = comfy.model_management.device_supports_non_blocking(input.device) w, bias = cast_bias_weight(self, input, dtype=dtype, bias_dtype=input.dtype) w = w.t()