|
43 | 43 | np.random.normal(loc=1000, scale=1, size=(100, 10)), |
44 | 44 | np.random.randint(0, 2, size=1000, dtype=bool).reshape(100, 10, order='F'), |
45 | 45 | np.random.choice([b'a', b'bb', b'ccc'], size=1000).reshape(10, 10, 10), |
| 46 | + np.random.randint(0, 2**60, size=1000, dtype='u8').view('M8[ns]'), |
| 47 | + np.random.randint(0, 2**60, size=1000, dtype='u8').view('m8[ns]'), |
| 48 | + np.random.randint(0, 2**25, size=1000, dtype='u8').view('M8[m]'), |
| 49 | + np.random.randint(0, 2**25, size=1000, dtype='u8').view('m8[m]'), |
46 | 50 | (-np.random.randint(-2**30, 2**30, size=1000, dtype='i8')).view('M8[ns]'), |
47 | 51 | (-np.random.randint(-2**30, 2**30, size=1000, dtype='i8')).view('m8[ns]'), |
48 | 52 | (-np.random.randint(-2**12, 2**13, size=1000, dtype='i8')).view('M8[m]'), |
|
0 commit comments