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
I saw this example in the README.md
@rjit('double(double, double)', 'int(int, int)') def add(x, y): return x + y
Is it possible to rjit a function that has Numpy array inputs?
rjit
i.e. something like
@rjit('double[:](double[:], double[:])') def add(x, y): return x + y
The text was updated successfully, but these errors were encountered:
Yes, in principle. The rjit signature should read rjit('double[](double[], double[])').
rjit('double[](double[], double[])')
For the heavydb backend, see test cases in https://github.com/heavyai/rbc/blob/main/rbc/tests/heavydb/test_array_math.py, for instance.
For the numpy backend, I am sure it can be made to work.
Sorry, something went wrong.
No branches or pull requests
I saw this example in the README.md
Is it possible to
rjit
a function that has Numpy array inputs?i.e. something like
The text was updated successfully, but these errors were encountered: