e7a10f72d6
git-subtree-dir: pairing git-subtree-mainline: c6f95b3997f6f5a9d6f5ab0472aaa2d54f0f61f7 git-subtree-split: e93d939ae001f8ff97c862542f6e2e2e4d52e217
269 lines
6.5 KiB
Rust
269 lines
6.5 KiB
Rust
use rand::{Rand, SeedableRng, XorShiftRng};
|
|
|
|
use ff::{Field, PrimeField, PrimeFieldRepr, SqrtField};
|
|
use pairing::bn256::*;
|
|
|
|
#[bench]
|
|
fn bench_fq_repr_add_nocarry(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<(FqRepr, FqRepr)> = (0..SAMPLES)
|
|
.map(|_| {
|
|
let mut tmp1 = FqRepr::rand(&mut rng);
|
|
let mut tmp2 = FqRepr::rand(&mut rng);
|
|
// Shave a few bits off to avoid overflow.
|
|
for _ in 0..3 {
|
|
tmp1.div2();
|
|
tmp2.div2();
|
|
}
|
|
(tmp1, tmp2)
|
|
})
|
|
.collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
let mut tmp = v[count].0;
|
|
tmp.add_nocarry(&v[count].1);
|
|
count = (count + 1) % SAMPLES;
|
|
tmp
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_fq_repr_sub_noborrow(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<(FqRepr, FqRepr)> = (0..SAMPLES)
|
|
.map(|_| {
|
|
let tmp1 = FqRepr::rand(&mut rng);
|
|
let mut tmp2 = tmp1;
|
|
// Ensure tmp2 is smaller than tmp1.
|
|
for _ in 0..10 {
|
|
tmp2.div2();
|
|
}
|
|
(tmp1, tmp2)
|
|
})
|
|
.collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
let mut tmp = v[count].0;
|
|
tmp.sub_noborrow(&v[count].1);
|
|
count = (count + 1) % SAMPLES;
|
|
tmp
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_fq_repr_num_bits(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<FqRepr> = (0..SAMPLES).map(|_| FqRepr::rand(&mut rng)).collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
let tmp = v[count].num_bits();
|
|
count = (count + 1) % SAMPLES;
|
|
tmp
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_fq_repr_mul2(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<FqRepr> = (0..SAMPLES).map(|_| FqRepr::rand(&mut rng)).collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
let mut tmp = v[count];
|
|
tmp.mul2();
|
|
count = (count + 1) % SAMPLES;
|
|
tmp
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_fq_repr_div2(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<FqRepr> = (0..SAMPLES).map(|_| FqRepr::rand(&mut rng)).collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
let mut tmp = v[count];
|
|
tmp.div2();
|
|
count = (count + 1) % SAMPLES;
|
|
tmp
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_fq_add_assign(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<(Fq, Fq)> = (0..SAMPLES)
|
|
.map(|_| (Fq::rand(&mut rng), Fq::rand(&mut rng)))
|
|
.collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
let mut tmp = v[count].0;
|
|
tmp.add_assign(&v[count].1);
|
|
count = (count + 1) % SAMPLES;
|
|
tmp
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_fq_sub_assign(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<(Fq, Fq)> = (0..SAMPLES)
|
|
.map(|_| (Fq::rand(&mut rng), Fq::rand(&mut rng)))
|
|
.collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
let mut tmp = v[count].0;
|
|
tmp.sub_assign(&v[count].1);
|
|
count = (count + 1) % SAMPLES;
|
|
tmp
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_fq_mul_assign(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<(Fq, Fq)> = (0..SAMPLES)
|
|
.map(|_| (Fq::rand(&mut rng), Fq::rand(&mut rng)))
|
|
.collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
let mut tmp = v[count].0;
|
|
tmp.mul_assign(&v[count].1);
|
|
count = (count + 1) % SAMPLES;
|
|
tmp
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_fq_square(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<Fq> = (0..SAMPLES).map(|_| Fq::rand(&mut rng)).collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
let mut tmp = v[count];
|
|
tmp.square();
|
|
count = (count + 1) % SAMPLES;
|
|
tmp
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_fq_inverse(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<Fq> = (0..SAMPLES).map(|_| Fq::rand(&mut rng)).collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
count = (count + 1) % SAMPLES;
|
|
v[count].inverse()
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_fq_negate(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<Fq> = (0..SAMPLES).map(|_| Fq::rand(&mut rng)).collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
let mut tmp = v[count];
|
|
tmp.negate();
|
|
count = (count + 1) % SAMPLES;
|
|
tmp
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_fq_sqrt(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<Fq> = (0..SAMPLES)
|
|
.map(|_| {
|
|
let mut tmp = Fq::rand(&mut rng);
|
|
tmp.square();
|
|
tmp
|
|
})
|
|
.collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
count = (count + 1) % SAMPLES;
|
|
v[count].sqrt()
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_fq_into_repr(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<Fq> = (0..SAMPLES).map(|_| Fq::rand(&mut rng)).collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
count = (count + 1) % SAMPLES;
|
|
v[count].into_repr()
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_fq_from_repr(b: &mut ::test::Bencher) {
|
|
const SAMPLES: usize = 1000;
|
|
|
|
let mut rng = XorShiftRng::from_seed([0x5dbe6259, 0x8d313d76, 0x3237db17, 0xe5bc0654]);
|
|
|
|
let v: Vec<FqRepr> = (0..SAMPLES)
|
|
.map(|_| Fq::rand(&mut rng).into_repr())
|
|
.collect();
|
|
|
|
let mut count = 0;
|
|
b.iter(|| {
|
|
count = (count + 1) % SAMPLES;
|
|
Fq::from_repr(v[count])
|
|
});
|
|
}
|