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 79dd04b commit d5faeecCopy full SHA for d5faeec
dpctl/tests/test_tensor_asarray.py
@@ -355,3 +355,11 @@ def test_asarray_seq_of_arrays_on_different_queues():
355
356
with pytest.raises(dpctl.utils.ExecutionPlacementError):
357
dpt.asarray([m, [w, py_seq]])
358
+
359
360
+def test_ulonglong_gh_1167():
361
+ get_queue_or_skip()
362
+ x = dpt.asarray(9223372036854775807, dtype="u8")
363
+ assert x.dtype == dpt.uint64
364
+ x = dpt.asarray(9223372036854775808, dtype="u8")
365
0 commit comments