You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importpytensor.tensorasptimportpytensorx=pt.dvector('x')
y=pt.sort(x)
f=pytensor.function([x], y, mode='NUMBA')
We can support this graph when sort = "quicksort", so we should. Numba does not support the kind argument for np.sort. For argsort, the kind argument is support for quicksort and mergesort, so we can support those.