```python 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
I suspect that this is just waiting on the jitify changes from @devavret , but thought I'd report it anyway