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

[FEA] Support arrays_overlap #5188

Closed
viadea opened this issue Apr 8, 2022 · 1 comment
Closed

[FEA] Support arrays_overlap #5188

viadea opened this issue Apr 8, 2022 · 1 comment
Assignees
Labels
cudf_dependency An issue or PR with this label depends on a new feature in cudf feature request New feature or request

Comments

@viadea
Copy link
Collaborator

viadea commented Apr 8, 2022

I wish we can support function arrays_overlap.

EG:

from pyspark.sql.functions import arrays_overlap
df = spark.createDataFrame([(["a", "b"], ["b", "c"]), (["a"], ["b", "c"])], ['x', 'y'])
df.write.format("parquet").mode("overwrite").save("/tmp/testparquet")
df = spark.read.parquet("/tmp/testparquet")
df.select(arrays_overlap(df.x, df.y).alias("overlap")).collect()

Not-supported-messages:

! <ArraysOverlap> arrays_overlap(x#54, y#55) cannot run on GPU because GPU does not currently support the operator class org.apache.spark.sql.catalyst.expressions.ArraysOverlap 
@viadea viadea added feature request New feature or request ? - Needs Triage Need team to review and classify labels Apr 8, 2022
@sameerz sameerz added cudf_dependency An issue or PR with this label depends on a new feature in cudf and removed ? - Needs Triage Need team to review and classify labels Apr 12, 2022
@sameerz
Copy link
Collaborator

sameerz commented Apr 12, 2022

Depends on rapidsai/cudf#10409

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cudf_dependency An issue or PR with this label depends on a new feature in cudf feature request New feature or request
Projects
None yet
Development

No branches or pull requests

4 participants