Skip to content

Commit d54a4c0

Browse files
committed
Fix arguments for full imageset not just for testing
1 parent 273bc3f commit d54a4c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

taco/image.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ static void bench_image_xor(benchmark::State& state, const Format& f) {
9595
}
9696
}
9797
static void CustomArguments(benchmark::internal::Benchmark* b) {
98-
for (int i = 1; i <= 11; ++i)
98+
for (int i = 1; i <= 98; ++i)
9999
b->Args({i});
100100
}
101101
TACO_BENCH_ARGS(bench_image_xor, csr, CSR)->Apply(CustomArguments);

0 commit comments

Comments
 (0)