cgmath/benches/vec.rs

65 lines
2.5 KiB
Rust
Raw Normal View History

// Copyright 2013-2014 The CGMath Developers. For a full listing of the authors,
2015-03-14 02:44:59 +00:00
// refer to the Cargo.toml file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2015-02-08 18:42:28 +00:00
#![feature(test)]
2015-01-07 22:34:42 +00:00
2018-01-03 02:01:02 +00:00
extern crate cgmath;
2015-02-08 18:42:28 +00:00
extern crate rand;
extern crate test;
2015-02-08 18:42:28 +00:00
use rand::{IsaacRng, Rng};
2015-12-22 11:55:59 +00:00
use std::ops::*;
use test::Bencher;
2015-12-22 11:55:59 +00:00
use cgmath::*;
2018-01-03 02:01:02 +00:00
#[path = "common/macros.rs"]
#[macro_use]
mod macros;
2015-12-22 11:55:59 +00:00
bench_binop!(_bench_vector2_add_v, Vector2<f32>, Vector2<f32>, add);
bench_binop!(_bench_vector3_add_v, Vector3<f32>, Vector3<f32>, add);
bench_binop!(_bench_vector4_add_v, Vector4<f32>, Vector4<f32>, add);
2015-12-22 11:55:59 +00:00
bench_binop!(_bench_vector2_sub_v, Vector2<f32>, Vector2<f32>, sub);
bench_binop!(_bench_vector3_sub_v, Vector3<f32>, Vector3<f32>, sub);
bench_binop!(_bench_vector4_sub_v, Vector4<f32>, Vector4<f32>, sub);
2015-12-22 11:55:59 +00:00
bench_binop!(_bench_vector2_mul_s, Vector2<f32>, f32, mul);
bench_binop!(_bench_vector3_mul_s, Vector3<f32>, f32, mul);
bench_binop!(_bench_vector4_mul_s, Vector4<f32>, f32, mul);
2015-12-22 11:55:59 +00:00
bench_binop!(_bench_vector2_div_s, Vector2<f32>, f32, div);
bench_binop!(_bench_vector3_div_s, Vector3<f32>, f32, div);
bench_binop!(_bench_vector4_div_s, Vector4<f32>, f32, div);
2016-03-26 02:37:00 +00:00
bench_binop!(_bench_vector2_rem_s, Vector2<f32>, f32, rem);
bench_binop!(_bench_vector3_rem_s, Vector3<f32>, f32, rem);
bench_binop!(_bench_vector4_rem_s, Vector4<f32>, f32, rem);
2014-12-19 18:06:39 +00:00
bench_binop!(_bench_vector2_dot, Vector2<f32>, Vector2<f32>, dot);
bench_binop!(_bench_vector3_dot, Vector3<f32>, Vector3<f32>, dot);
bench_binop!(_bench_vector4_dot, Vector4<f32>, Vector4<f32>, dot);
2014-12-19 18:06:39 +00:00
bench_binop!(_bench_vector3_cross, Vector3<f32>, Vector3<f32>, cross);
2016-03-27 05:40:17 +00:00
bench_unop!(_bench_vector2_magnitude, Vector2<f32>, magnitude);
bench_unop!(_bench_vector3_magnitude, Vector3<f32>, magnitude);
bench_unop!(_bench_vector4_magnitude, Vector4<f32>, magnitude);
2014-12-19 18:06:39 +00:00
bench_unop!(_bench_vector2_normalize, Vector2<f32>, normalize);
bench_unop!(_bench_vector3_normalize, Vector3<f32>, normalize);
bench_unop!(_bench_vector4_normalize, Vector4<f32>, normalize);