From c75859489f402d54ffded2c170c485a3203cf680 Mon Sep 17 00:00:00 2001 From: Julien Balian Date: Tue, 13 Feb 2024 15:21:57 +0100 Subject: [PATCH] fix: missing replacement --- core/src/ops/math/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/ops/math/mod.rs b/core/src/ops/math/mod.rs index cd19c9e480..283f343b7f 100644 --- a/core/src/ops/math/mod.rs +++ b/core/src/ops/math/mod.rs @@ -37,7 +37,7 @@ bin_to_super_type!(add, Add, * c_inv_scale) as i32 + c_qp.zp_scale().0 as i32).clamp_cast()); Ok(c) } else { - Mul.generic_eval(a, b, c_dt) + Add.generic_eval(a, b, c_dt) } }, linalg: Add,