Files
tinygrad/test
chenyu e398734890 fuzz test transcend math (#5383)
* fuzz test transcend math

found something wrong with float64 sin reduction

```
from tinygrad import Tensor, dtypes
import numpy as np
print(Tensor([39800.0], dtype=dtypes.float64).sin().numpy())
print(Tensor([39800.0], dtype=dtypes.float32).sin().numpy())
print(Tensor([39800.0], dtype=dtypes.float16).sin().numpy())
print(np.sin(np.array([39800.0], dtype=np.float64)))
print(np.sin(np.array([39800.0], dtype=np.float32)))
print(np.sin(np.array([39800.0], dtype=np.float16)))
```

```
CLANG=1 python test.py
[0.92785633]
[0.7428573]
[-0.7705]
[0.74285722]
[0.7428572]
[-0.7705]
```

* fix test

* abs

* skip
2024-07-13 01:54:52 -04:00
..
2024-07-12 20:43:36 -07:00
2024-07-12 20:43:36 -07:00
2023-12-01 11:34:47 -08:00
2020-12-15 23:44:08 -08:00
2023-06-25 10:38:58 -07:00
2024-07-12 20:43:36 -07:00
2024-03-18 16:47:07 -04:00
2024-06-26 17:50:37 +03:00
2023-12-07 17:07:05 -08:00
2024-05-15 23:46:08 +03:00
2024-06-25 19:49:21 -07:00
2024-07-12 20:43:36 -07:00
2024-05-15 23:46:08 +03:00
2024-05-15 23:46:08 +03:00
2024-07-08 17:45:40 -07:00