Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuyukitanimura committed Sep 3, 2024
1 parent 58797c8 commit 84c4f94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arrow-buffer/benches/bit_mask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ use criterion::{black_box, criterion_group, criterion_main, BenchmarkId, Criteri
fn criterion_benchmark(c: &mut Criterion) {
let mut group = c.benchmark_group("bit_mask");

for offset_write in (0..8).step_by(5) {
for offset_read in (0..8).step_by(5) {
for offset_write in [0, 5] {
for offset_read in [0, 5] {
for len in [1, 17, 65] {
for datum in [0u8, 0xADu8] {
let x = (offset_write, offset_read, len, datum);
Expand Down

0 comments on commit 84c4f94

Please sign in to comment.