Skip to content

Commit d9bce2e

Browse files
committed
examples/quick-comparison: Also test with fewer shards (8 and 16)
1 parent a5fc49a commit d9bce2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/quick-comparison.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ fn main() {
2323
println!(" µs (init) µs (encode) µs (decode)");
2424
println!(" --------- ----------- -----------");
2525

26-
for count in [32, 64, 128, 256, 512, 1024, 4 * 1024, 32 * 1024] {
26+
for count in [8, 16, 32, 64, 128, 256, 512, 1024, 4 * 1024, 32 * 1024] {
2727
println!("\n{}:{} ({} kiB)", count, count, SHARD_BYTES / 1024);
2828
test_reed_solomon_simd(count);
2929
test_reed_solomon_16(count);

0 commit comments

Comments
 (0)