From 6cdcae077093089ccfd10ea0b1860eccd36b007b Mon Sep 17 00:00:00 2001 From: dante <45801863+alexander-camuto@users.noreply.github.com> Date: Sun, 19 Nov 2023 13:17:52 +0300 Subject: [PATCH] chore: cleanup block size warnings (#621) --- src/tensor/var.rs | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/tensor/var.rs b/src/tensor/var.rs index 9d531a75c..1248af061 100644 --- a/src/tensor/var.rs +++ b/src/tensor/var.rs @@ -57,7 +57,7 @@ impl VarTensor { if modulo > 1 { warn!( - "will be using column duplication for {} unblinded advice columns", + "using column duplication for {} unblinded advice blocks", modulo - 1 ); } @@ -99,10 +99,7 @@ impl VarTensor { let mut advices = vec![]; if modulo > 1 { - warn!( - "will be using column duplication for {} advice columns", - modulo - 1 - ); + warn!("using column duplication for {} advice blocks", modulo - 1); } for _ in 0..modulo { @@ -148,10 +145,7 @@ impl VarTensor { modulo = (num_constants + modulo) / max_rows + 1; if modulo > 1 { - warn!( - "will be using column duplication for {} fixed columns", - modulo - 1 - ); + warn!("using column duplication for {} fixed columns", modulo - 1); } for _ in 0..modulo {