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

Replace raw streams with rmm::cuda_stream_view (part 3) #6744

Merged
merged 120 commits into from
Nov 24, 2020

Conversation

harrism
Copy link
Member

@harrism harrism commented Nov 12, 2020

Converting libcudf to use rmm::cuda_stream_view will require a LOT of changes, so I'm splitting it into multiple PRs to ease reviewing. This is the third PR in the series. This series of PRs will

Contributes to #6645 and #5119

Depends on #6646 and #6648 so this PR will look much bigger until they are merged.

This third PR converts:

  • remaining dictionary functionality
  • cuio
  • lists
  • scalar
  • strings
  • groupby
  • join
  • contiguous_split
  • get_element
  • datetime_ops
  • extract
  • merge
  • partitioning
  • minmax reduction
  • scan
  • byte_cast
  • clamp
  • interleave_columns
  • is_sorted
  • groupby
  • rank
  • tests
  • concurrent map classes

@harrism
Copy link
Member Author

harrism commented Nov 22, 2020

rerun tests

1 similar comment
@kkraus14
Copy link
Collaborator

rerun tests

Copy link
Member

@jlowe jlowe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Java approval.

Copy link
Contributor

@rgsl888prabhu rgsl888prabhu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, just small changes

cpp/include/cudf/strings/detail/merge.cuh Outdated Show resolved Hide resolved
cpp/src/io/csv/writer_impl.cu Outdated Show resolved Hide resolved
cpp/src/join/join.cu Outdated Show resolved Hide resolved
cpp/src/reshape/interleave_columns.cu Outdated Show resolved Hide resolved
cpp/src/strings/capitalize.cu Outdated Show resolved Hide resolved
cpp/src/strings/replace/multi_re.cu Outdated Show resolved Hide resolved
cpp/src/strings/replace/replace_re.cu Outdated Show resolved Hide resolved
cpp/src/strings/substring.cu Outdated Show resolved Hide resolved
cpp/src/strings/translate.cu Outdated Show resolved Hide resolved
cpp/src/text/generate_ngrams.cu Outdated Show resolved Hide resolved
Copy link
Contributor

@devavret devavret left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggest making a debug build once and changing any CHECK_CUDA(stream) to CHECK_CUDA(stream.view()). There are several instances in this PR which I cannot request changes in because those lines are not part of diffs.

@harrism
Copy link
Member Author

harrism commented Nov 23, 2020

Suggest making a debug build once and changing any CHECK_CUDA(stream) to CHECK_CUDA(stream.view()). There are several instances in this PR which I cannot request changes in because those lines are not part of diffs.

Thanks @devavret , done. Running a debug build in the background...

Copy link
Contributor

@codereport codereport left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍

@harrism
Copy link
Member Author

harrism commented Nov 24, 2020

@devavret I found and fixed an unrelated debug build issue. Can you approve?

@harrism harrism added 5 - Ready to Merge Testing and reviews complete, ready to merge and removed 3 - Ready for Review Ready for review by team labels Nov 24, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
5 - Ready to Merge Testing and reviews complete, ready to merge cuIO cuIO issue libcudf Affects libcudf (C++/CUDA) code.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants