forked from M-Labs/nalgebra
1eed234e08
The `Vec` trait is renamed `AnyVec`. The `Less`, `Greater`, `Equal` variants are renamed `PartialLess`, `PartialGreater`, `PartialEqual`. Those new names are not very good, so they might change in the future.
46 lines
835 B
Rust
46 lines
835 B
Rust
use rand::random;
|
|
use test::Bencher;
|
|
use na::{Vec2, Vec3, Vec4, Vec5, Vec6};
|
|
use na;
|
|
|
|
macro_rules! bench_dot_vec(
|
|
($bh: expr, $t: ty) => {
|
|
{
|
|
let a: $t = random();
|
|
let b: $t = random();
|
|
let mut d = 0.0;
|
|
|
|
$bh.iter(|| {
|
|
for _ in range(0, 1000) {
|
|
d = d + na::dot(&a, &b);
|
|
}
|
|
})
|
|
}
|
|
}
|
|
)
|
|
|
|
#[bench]
|
|
fn bench_dot_vec2(bh: &mut Bencher) {
|
|
bench_dot_vec!(bh, Vec2<f64>)
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_dot_vec3(bh: &mut Bencher) {
|
|
bench_dot_vec!(bh, Vec3<f64>)
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_dot_vec4(bh: &mut Bencher) {
|
|
bench_dot_vec!(bh, Vec4<f64>)
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_dot_vec5(bh: &mut Bencher) {
|
|
bench_dot_vec!(bh, Vec5<f64>)
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_dot_vec6(bh: &mut Bencher) {
|
|
bench_dot_vec!(bh, Vec6<f64>)
|
|
}
|