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.
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
Here is a simple example:
from numpy import empty, int32, all def main0(): x: i32[5] = empty(5, dtype=int32) x[:] = (2+3)*5 assert all(x == 25) main0()
or:
from numpy import empty, int32 def main0(): x: i32[2] = empty(2, dtype=int32) x[0] = 3 x[1] = 4 assert x[0] == 3 && x[1] == 4 main0()
The text was updated successfully, but these errors were encountered:
Later, implement the most commonly used functionality, for example what CuPy implements: https://docs.cupy.dev/en/stable/reference/index.html
Sorry, something went wrong.
I think this issue is fixed. See #1458 for the CuPy support.
No branches or pull requests
Here is a simple example:
or:
The text was updated successfully, but these errors were encountered: