Skip to content
New issue

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

Can we specify Numpy array as the input? #581

Open
jimlinntu opened this issue Jan 24, 2025 · 1 comment
Open

Can we specify Numpy array as the input? #581

jimlinntu opened this issue Jan 24, 2025 · 1 comment

Comments

@jimlinntu
Copy link

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?

i.e. something like

@rjit('double[:](double[:], double[:])')
def add(x, y):
    return x + y
@pearu
Copy link
Contributor

pearu commented Jan 24, 2025

Yes, in principle. The rjit signature should read 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants