aboutsummaryrefslogtreecommitdiff
path: root/benches/tuple_combinations.rs
diff options
context:
space:
mode:
Diffstat (limited to 'benches/tuple_combinations.rs')
-rw-r--r--benches/tuple_combinations.rs48
1 files changed, 24 insertions, 24 deletions
diff --git a/benches/tuple_combinations.rs b/benches/tuple_combinations.rs
index 84411ef..4e26b28 100644
--- a/benches/tuple_combinations.rs
+++ b/benches/tuple_combinations.rs
@@ -7,8 +7,8 @@ const N2: usize = 448;
const N3: usize = 86;
const N4: usize = 41;
-fn comb_for1(c: &mut Criterion) {
- c.bench_function("comb for1", move |b| {
+fn tuple_comb_for1(c: &mut Criterion) {
+ c.bench_function("tuple comb for1", move |b| {
b.iter(|| {
for i in 0..N1 {
black_box(i);
@@ -17,8 +17,8 @@ fn comb_for1(c: &mut Criterion) {
});
}
-fn comb_for2(c: &mut Criterion) {
- c.bench_function("comb for2", move |b| {
+fn tuple_comb_for2(c: &mut Criterion) {
+ c.bench_function("tuple comb for2", move |b| {
b.iter(|| {
for i in 0..N2 {
for j in (i + 1)..N2 {
@@ -29,8 +29,8 @@ fn comb_for2(c: &mut Criterion) {
});
}
-fn comb_for3(c: &mut Criterion) {
- c.bench_function("comb for3", move |b| {
+fn tuple_comb_for3(c: &mut Criterion) {
+ c.bench_function("tuple comb for3", move |b| {
b.iter(|| {
for i in 0..N3 {
for j in (i + 1)..N3 {
@@ -43,8 +43,8 @@ fn comb_for3(c: &mut Criterion) {
});
}
-fn comb_for4(c: &mut Criterion) {
- c.bench_function("comb for4", move |b| {
+fn tuple_comb_for4(c: &mut Criterion) {
+ c.bench_function("tuple comb for4", move |b| {
b.iter(|| {
for i in 0..N4 {
for j in (i + 1)..N4 {
@@ -59,8 +59,8 @@ fn comb_for4(c: &mut Criterion) {
});
}
-fn comb_c1(c: &mut Criterion) {
- c.bench_function("comb c1", move |b| {
+fn tuple_comb_c1(c: &mut Criterion) {
+ c.bench_function("tuple comb c1", move |b| {
b.iter(|| {
for (i,) in (0..N1).tuple_combinations() {
black_box(i);
@@ -69,8 +69,8 @@ fn comb_c1(c: &mut Criterion) {
});
}
-fn comb_c2(c: &mut Criterion) {
- c.bench_function("comb c2", move |b| {
+fn tuple_comb_c2(c: &mut Criterion) {
+ c.bench_function("tuple comb c2", move |b| {
b.iter(|| {
for (i, j) in (0..N2).tuple_combinations() {
black_box(i + j);
@@ -79,8 +79,8 @@ fn comb_c2(c: &mut Criterion) {
});
}
-fn comb_c3(c: &mut Criterion) {
- c.bench_function("comb c3", move |b| {
+fn tuple_comb_c3(c: &mut Criterion) {
+ c.bench_function("tuple comb c3", move |b| {
b.iter(|| {
for (i, j, k) in (0..N3).tuple_combinations() {
black_box(i + j + k);
@@ -89,8 +89,8 @@ fn comb_c3(c: &mut Criterion) {
});
}
-fn comb_c4(c: &mut Criterion) {
- c.bench_function("comb c4", move |b| {
+fn tuple_comb_c4(c: &mut Criterion) {
+ c.bench_function("tuple comb c4", move |b| {
b.iter(|| {
for (i, j, k, l) in (0..N4).tuple_combinations() {
black_box(i + j + k + l);
@@ -101,13 +101,13 @@ fn comb_c4(c: &mut Criterion) {
criterion_group!(
benches,
- comb_for1,
- comb_for2,
- comb_for3,
- comb_for4,
- comb_c1,
- comb_c2,
- comb_c3,
- comb_c4,
+ tuple_comb_for1,
+ tuple_comb_for2,
+ tuple_comb_for3,
+ tuple_comb_for4,
+ tuple_comb_c1,
+ tuple_comb_c2,
+ tuple_comb_c3,
+ tuple_comb_c4,
);
criterion_main!(benches);