documenting the revsqrt tests a little more
Cargo Check, Format, Fix and Test / cargo CI (push) Failing after 2m6s Details

This commit is contained in:
Christoph J. Scherr 2024-01-25 10:10:10 +01:00
parent ffe10e1791
commit 5a0f83695c
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
3 changed files with 83 additions and 9 deletions

View File

@ -25,3 +25,7 @@ path = "src/main.rs"
[[test]]
name = "revsqrt"
harness = false # allows Cucumber to print output instead of libtest
[[test]]
name = "basic-revsqrt"
harness = true

View File

@ -0,0 +1,71 @@
use std::iter::zip;
use revsqrt;
use rand;
// is n about the same as m?
// This is actually not so easy! How do you measure "about same"ness?
// Also, it is not transitive, as 1 ≈ 1.1 ≈ 1.2 ≈ 1.3 ≈ ... ≈ 2 ≈ ... ≈ 3 ≈ ... ≈ infinity, that's
// a thought of me at least?
#[inline]
fn about_same(n: f32, m: f32) -> bool {
// dbg!((n, m));
// dbg!((n - m).abs());
// dbg!(calc_gate(n, m));
// dbg!((n - m).abs() < calc_gate(n, m));
(n - m).abs() <= calc_gate(n, m)
}
#[inline]
fn calc_gate(n: f32, m: f32) -> f32 {
0.01 + ((n.abs().sqrt().min(m.abs().sqrt())).abs() / 10f32)
}
#[test]
fn test_calc_fast_rsqrt() {
assert_ne!(0.0, revsqrt::fast_inverse_sqrt(rand::random()))
}
#[test]
fn test_calc_regular_rsqrt() {
assert_ne!(0.0, revsqrt::regular_inverse_sqrt(rand::random()))
}
#[test]
fn test_calc_specific_fast_rsqrt() {
let params: &[f32] = &[1.0, 1.1, 100.0, 1337.0, 123.45678900, 1337.1337];
let results: &[f32] = &[
1.0,
0.9534625892455922,
0.1,
0.02734854943722097,
0.0900000004095,
0.027347182112297627,
];
for (n, m) in zip(params, results) {
assert!(about_same(revsqrt::fast_inverse_sqrt(*n), *m))
}
}
#[test]
fn test_calc_specific_reqular_rsqrt() {
let params: &[f32] = &[1.0, 1.1, 100.0, 1337.0, 123.45678900, 1337.1337];
let results: &[f32] = &[
1.0,
0.9534625892455922,
0.1,
0.02734854943722097,
0.0900000004095,
0.027347182112297627,
];
for (n, m) in zip(params, results) {
assert_eq!(revsqrt::regular_inverse_sqrt(*n), *m)
}
}
#[test]
fn test_fail() {
println!("the stdout will be printed on fail!");
assert!(false)
}

View File

@ -1,23 +1,22 @@
use std::iter::zip;
use revsqrt;
use cucumber::{gherkin::Step, given, then, when, World};
use rand;
/// stores the current information for each scenario
#[derive(Debug, Default, World)]
pub struct NumWorld {
struct NumWorld {
numbers: Vec<(f32, f32)>,
}
// is n about the same as m?
// This is actually not so easy! How do you measure "about same"ness?
// Also, it is not transitive, as 1 ≈ 1.1 ≈ 1.2 ≈ 1.3 ≈ ... ≈ 2 ≈ ... ≈ 3 ≈ ... ≈ infinity, that's
// a thought of me at least?
/// is n about the same as m?
///
/// This is actually not so easy! How do you measure *about same*ness?
/// Also, I don't think it is transitive, as 1 ≈ 1.1 ≈ 1.2 ≈ 1.3 ≈ ... ≈ 2 ≈ ... ≈ 3 ≈ ... ≈ infinity
#[inline]
fn about_same(n: f32, m: f32) -> bool {
// dbg!((n, m));
// dbg!((n - m).abs());
// dbg!(calc_gate(n, m));
// dbg!((n - m).abs() < calc_gate(n, m));
(n - m).abs() <= calc_gate(n, m)
}