Skip to content

Commit

Permalink
chore: cleanup block size warnings (#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-camuto authored Nov 19, 2023
1 parent e01765d commit 6cdcae0
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions src/tensor/var.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
}
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 6cdcae0

Please sign in to comment.