(self)
| 1981 | assert_array_max_ulp(np.exp(x_f32), np.float32(np.exp(x_f64)), maxulp=3) |
| 1982 | |
| 1983 | def test_log_float32(self): |
| 1984 | np.random.seed(42) |
| 1985 | x_f32 = np.float32(np.random.uniform(low=0.0,high=1000,size=1000000)) |
| 1986 | x_f64 = np.float64(x_f32) |
| 1987 | assert_array_max_ulp(np.log(x_f32), np.float32(np.log(x_f64)), maxulp=4) |
| 1988 | |
| 1989 | def test_sincos_float32(self): |
| 1990 | np.random.seed(42) |
nothing calls this directly
no test coverage detected