From b05194d6d40d6e51bb971deaa2b6600da5bdd1b4 Mon Sep 17 00:00:00 2001 From: eunseo Date: Mon, 10 Aug 2026 23:27:08 +0900 Subject: [PATCH] fix: correct indentation in utils.py --- lib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.py b/lib/utils.py index 7a4faee..07b8d74 100644 --- a/lib/utils.py +++ b/lib/utils.py @@ -75,7 +75,7 @@ def _proj_impl_dense( elif isinstance(a,OptimState4bit): a = a.dequantize() - z_metric = a * (weight**2) + z_metric = a * (weight**2) else: # Standard projection: metric is |x| z_metric = weight.abs()