go back to using random instead of uniform-random-float in math.vectors.simd tests because the software and SIMD implementations of norm and v. can sporadically diverge when their different operation orders lead to cancellation of catastrophically small inputs

Joe Groff 2009-10-03 22:57:04 -05:00
parent f565df3a85
commit f8a4469c5f
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ CONSTANT: simd-classes
: random-float-vector ( class -- vec )
new [
drop
-1,000.0 1,000.0 uniform-random-float
1000 random
10 swap <array> 0/0. suffix random
] map ;