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

[BUG] Dividing dataframes of different dtypes fails #1105

Closed
mrocklin opened this issue Mar 5, 2019 · 4 comments
Closed

[BUG] Dividing dataframes of different dtypes fails #1105

mrocklin opened this issue Mar 5, 2019 · 4 comments
Labels
bug Something isn't working libcudf Affects libcudf (C++/CUDA) code. Python Affects Python cuDF API.

Comments

@mrocklin
Copy link
Collaborator

mrocklin commented Mar 5, 2019

import cudf
a = cudf.DataFrame({'x': [1., 1.], 'y': [1, 1]})
b = cudf.DataFrame({'x': [1, 1], 'y': [1, 1]})
a / b

I suspect that this is just waiting on the jitify changes from @devavret , but thought I'd report it anyway

@mrocklin mrocklin added bug Something isn't working Needs Triage Need team to review and classify labels Mar 5, 2019
@kkraus14
Copy link
Collaborator

kkraus14 commented Mar 6, 2019

I suspect that this is just waiting on the jitify changes from @devavret , but thought I'd report it anyway

Correct, thanks for reporting though!

@kkraus14 kkraus14 added libcudf Affects libcudf (C++/CUDA) code. Python Affects Python cuDF API. and removed Needs Triage Need team to review and classify labels Mar 6, 2019
@mrocklin
Copy link
Collaborator Author

mrocklin commented Mar 6, 2019

Are those changes planned for 0.6?

@harrism
Copy link
Member

harrism commented Mar 14, 2019

The JIT binops PR is merged #892 . What is needed to fix this issue on top of that @kkraus14 ?

@kkraus14
Copy link
Collaborator

kkraus14 commented Jul 3, 2019

This now works as expected.

@kkraus14 kkraus14 closed this as completed Jul 3, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working libcudf Affects libcudf (C++/CUDA) code. Python Affects Python cuDF API.
Projects
None yet
Development

No branches or pull requests

3 participants