We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c4211c commit dc1887eCopy full SHA for dc1887e
dpctl/tests/test_usm_ndarray_manipulation.py
@@ -1560,8 +1560,12 @@ def test_repeat_0_size():
1560
1561
1562
def test_result_type_bug_1874():
1563
- dts_bool = [True, np.bool_(True)]
1564
- dts_ints = [int(1), np.int64(1)]
+ py_sc = True
+ np_sc = np.asarray([py_sc])[0]
1565
+ dts_bool = [py_sc, np_sc]
1566
+ py_sc = int(1)
1567
1568
+ dts_ints = [py_sc, np_sc]
1569
dts_floats = [float(1), np.float64(1)]
1570
dts_complexes = [complex(1), np.complex128(1)]
1571
0 commit comments