We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The new dpjit decorator in numba-dpex should support the following dpnp array constructors:
arange
linspace
empty
empty_like
eye
identity
zeros
zeros_like
ones
ones_like
full
full_like
array
asarray
copy
diag
tri
tril
triu
vander
The text was updated successfully, but these errors were encountered:
dpnp.empty(): PR #902 dpnp.zeros() and dpnp.ones(): PR #923
dpnp.empty()
dpnp.zeros()
dpnp.ones()
Sorry, something went wrong.
dpnp.empty_like(), dpnp.zeros_like(), dpnp.ones_like(): PR #928
dpnp.empty_like()
dpnp.zeros_like()
dpnp.ones_like()
dpnp.full(): PR #991
dpnp.full()
dpnp.full_like(): PR #997
dpnp.full_like()
No branches or pull requests
The new dpjit decorator in numba-dpex should support the following dpnp array constructors:
arange
linspace
empty
empty_like
: Implementation for dpnp.empty_like(), dpnp.zeros_like() and dpnp.ones_like() #928eye
identity
zeros
: Implementing dpnp.zeros() and dpnp.ones() interface #923zeros_like
: Implementation for dpnp.empty_like(), dpnp.zeros_like() and dpnp.ones_like() #928ones
: Implementing dpnp.zeros() and dpnp.ones() interface #923ones_like
: Implementation for dpnp.empty_like(), dpnp.zeros_like() and dpnp.ones_like() #928full
: Implementation for dpnp.full() #991full_like
: Implementation for dpnp.full_like() #997array
asarray
: Support dpnp.asarray in dpjit. #1013copy
diag
tri
tril
triu
vander
The text was updated successfully, but these errors were encountered: