Skip to content

Commit

Permalink
fix: cnvrl bench runtimes (zkonduit#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-camuto authored Dec 12, 2022
1 parent 8a23174 commit b00f482
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benches/cnvrl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static mut IMAGE_WIDTH: usize = 2;
static mut IN_CHANNELS: usize = 2;
const PADDING: usize = 2;

const K: usize = 9;
const K: usize = 11;

#[derive(Clone, Debug)]
struct MyCircuit<F: FieldExt + TensorType>
Expand Down Expand Up @@ -101,7 +101,7 @@ where
fn runcnvrl(c: &mut Criterion) {
let mut group = c.benchmark_group("cnvrl");

for size in [1, 2, 4, 8, 16, 32].iter() {
for size in [1, 2, 4, 8].iter() {
unsafe {
KERNEL_HEIGHT = size * 3;
KERNEL_WIDTH = size * 3;
Expand Down

0 comments on commit b00f482

Please sign in to comment.