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:02:19 -07:00
2024-07-12 14:43:13 -04:00
2024-07-12 20:43:36 -07:00
2024-06-27 08:15:01 -04: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-11 11:37:10 -07:00
2024-07-12 10:23:16 +03:00
2024-05-15 15:06:48 +03:00
2024-07-12 15:13:19 -07:00
2024-07-12 15:13:19 -07:00
2024-07-12 20:43:36 -07:00
2024-02-15 16:55:39 +01:00
2024-07-12 13:26:50 -07:00
2024-07-10 17:34:50 -07:00
2024-07-13 01:11:53 -04:00
2024-06-22 10:34:57 -04:00
2024-06-10 14:49:29 -04:00
2024-06-12 13:22:30 -04:00
2024-03-18 16:47:07 -04:00
2024-06-26 17:50:37 +03:00
2024-07-09 20:44:44 +03:00
2024-07-08 21:23:19 -07:00
2024-07-10 16:44:58 -07:00
2024-01-01 10:59:56 -08:00
2024-07-12 15:13:19 -07:00
2024-07-12 15:13:19 -07:00
2024-07-12 18:50:55 -07:00
2024-07-12 18:50:55 -07:00
2024-07-12 18:50:55 -07:00
2023-12-07 17:07:05 -08:00
2024-03-14 20:44:34 -07:00
2024-07-12 15:13:19 -07:00
2024-05-15 23:46:08 +03:00
2024-07-12 15:13:19 -07:00
2024-07-12 20:25:12 -04:00
2024-06-11 11:36:02 -04:00
2024-07-12 20:02:19 -07:00
2024-06-25 19:49:21 -07:00
2024-07-12 20:02:19 -07:00
2024-06-18 14:21:05 -04:00
2023-12-03 17:20:27 -05:00
2024-07-12 20:43:36 -07:00
2024-07-12 18:50:55 -07:00
2024-05-14 01:28:02 -04:00
2024-05-15 23:46:08 +03:00
2024-05-15 23:46:08 +03:00
2024-06-03 22:11:52 +03:00
2024-06-16 15:55:51 -04:00
2024-06-05 12:55:54 -04:00
2024-06-05 16:01:19 -04:00
2024-04-18 07:43:10 +04:00
2024-06-18 15:21:26 -04:00
2024-07-08 17:45:40 -07:00
2023-11-27 21:24:06 -08:00
2024-07-13 01:54:52 -04:00
2024-07-10 17:34:50 -07:00
2024-07-10 17:34:50 -07:00
2024-07-10 17:34:50 -07:00
2024-07-12 18:50:55 -07:00
2024-07-12 18:50:55 -07:00
2024-01-14 19:36:05 -08:00