@@ -996,17 +996,17 @@ end
996
996
end
997
997
998
998
@testset " minimal_rsqrt_test" begin
999
- @test rsqrt (∅) == ∅
1000
- @test rsqrt (Interval (- Inf , Inf )) == 0 .. Inf
1001
- @test rsqrt (Interval (- Inf , - 0x0 .0000000000001 p- 1022 )) == ∅
1002
- @test rsqrt (Interval (- 1.0 , 1.0 )) == 1.0 .. Inf
1003
- @test rsqrt (Interval (0.0 , 1.0 )) == 1.0 .. Inf
1004
- @test rsqrt (Interval (- 0.0 , 1.0 )) == 1.0 .. Inf
1005
- @test rsqrt (Interval (- 5.0 , 25.0 )) == 0.2 .. Inf
1006
- @test rsqrt (Interval (0.0 , 25.0 )) == 0.2 .. Inf
1007
- @test rsqrt (Interval (- 0.0 , 25.0 )) == 0.2 .. Inf
1008
- @test rsqrt (Interval (- 5.0 , Inf )) == 0.0 .. Inf
1009
- @test rsqrt (Interval (4.0 , 25.0 )) == 0.2 .. 0.5
999
+ @test reciprocal_sqrt (∅) == ∅
1000
+ @test reciprocal_sqrt (Interval (- Inf , Inf )) == 0 .. Inf
1001
+ @test reciprocal_sqrt (Interval (- Inf , - 0x0 .0000000000001 p- 1022 )) == ∅
1002
+ @test reciprocal_sqrt (Interval (- 1.0 , 1.0 )) == 1.0 .. Inf
1003
+ @test reciprocal_sqrt (Interval (0.0 , 1.0 )) == 1.0 .. Inf
1004
+ @test reciprocal_sqrt (Interval (- 0.0 , 1.0 )) == 1.0 .. Inf
1005
+ @test reciprocal_sqrt (Interval (- 5.0 , 25.0 )) == 0.2 .. Inf
1006
+ @test reciprocal_sqrt (Interval (0.0 , 25.0 )) == 0.2 .. Inf
1007
+ @test reciprocal_sqrt (Interval (- 0.0 , 25.0 )) == 0.2 .. Inf
1008
+ @test reciprocal_sqrt (Interval (- 5.0 , Inf )) == 0.0 .. Inf
1009
+ @test reciprocal_sqrt (Interval (4.0 , 25.0 )) == 0.2 .. 0.5
1010
1010
end
1011
1011
1012
1012
@testset " minimal_fma_test" begin
0 commit comments