We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Found in #1427
>>> import dpctl.tensor as dpt >>> a = dpt.asarray([1, 2, 3, 4]) >>> dpt.repeat(a, 2, 0) usm_ndarray([1, 1, 1, 1, 1, 1, 1, 1]) #expected result #usm_ndarray([1, 1, 2, 2, 3, 3, 4, 4])