numba-dpex
numba-dpex copied to clipboard
Supporting dpnp array creation functions inside dpjit
The new dpjit decorator in numba-dpex should support the following dpnp array constructors:
- [ ]
arange - [ ]
linspace - [x]
empty - [x]
empty_like: #928 - [ ]
eye - [ ]
identity - [x]
zeros: #923 - [x]
zeros_like: #928 - [x]
ones: #923 - [x]
ones_like: #928 - [x]
full: #991 - [x]
full_like: #997 - [ ]
array - [ ]
asarray: #1013 - [ ]
copy - [ ]
diag - [ ]
tri - [ ]
tril - [ ]
triu - [ ]
vander
dpnp.empty(): PR #902
dpnp.zeros() and dpnp.ones(): PR #923
dpnp.empty_like(), dpnp.zeros_like(), dpnp.ones_like(): PR #928
dpnp.full(): PR #991
dpnp.full_like(): PR #997