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 625e07a commit 411dd2fCopy full SHA for 411dd2f
dpctl/tests/test_usm_ndarray_manipulation.py
@@ -1536,8 +1536,12 @@ def test_repeat_0_size():
1536
1537
1538
def test_result_type_bug_1874():
1539
- dts_bool = [True, np.bool_(True)]
1540
- dts_ints = [int(1), np.int64(1)]
+ py_sc = True
+ np_sc = np.asarray([py_sc])[0]
1541
+ dts_bool = [py_sc, np_sc]
1542
+ py_sc = int(1)
1543
1544
+ dts_ints = [py_sc, np_sc]
1545
dts_floats = [float(1), np.float64(1)]
1546
dts_complexes = [complex(1), np.complex128(1)]
1547
0 commit comments