(self)
| 2180 | |
| 2181 | class TestAVXFloat32Transcendental: |
| 2182 | def test_exp_float32(self): |
| 2183 | np.random.seed(42) |
| 2184 | x_f32 = np.float32(np.random.uniform(low=0.0, high=88.1, size=1000000)) |
| 2185 | x_f64 = np.float64(x_f32) |
| 2186 | assert_array_max_ulp(np.exp(x_f32), np.float32(np.exp(x_f64)), maxulp=3) |
| 2187 | |
| 2188 | def test_log_float32(self): |
| 2189 | np.random.seed(42) |
nothing calls this directly
no test coverage detected