Skip to content

Commit

Permalink
Remove extra benchmark with no NaNs
Browse files Browse the repository at this point in the history
  • Loading branch information
adamreeve committed Jan 8, 2025
1 parent 7155230 commit 0734f40
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions parquet/benches/arrow_writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -492,18 +492,6 @@ fn bench_primitive_writer(c: &mut Criterion) {
b.iter(|| write_batch(&batch).unwrap())
});

let batch = create_float_bench_batch_with_nans(4096, 0.0).unwrap();
group.throughput(Throughput::Bytes(
batch
.columns()
.iter()
.map(|f| f.get_array_memory_size() as u64)
.sum(),
));
group.bench_function("4096 values float with no NaNs", |b| {
b.iter(|| write_batch(&batch).unwrap())
});

group.finish();
}

Expand Down

0 comments on commit 0734f40

Please sign in to comment.