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

Fix Scaladoc warnings in GpuScalaUDF and BufferSendState #3236

Merged
merged 1 commit into from
Aug 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ class BufferSendState(
* Prepares and returns a `MemoryBuffer` that can be used in a send.
* @return - a memory buffer slice backed by either a host or device bounce buffer, depending on
* the tier location for buffers we are sending.
* @throws `RapidsShuffleSendPrepareException` when copies to the bounce buffer fail.
* @throws org.apache.spark.shuffle.RapidsShuffleSendPrepareException when copies to the
* bounce buffer fail.
*/
def getBufferToSend(): MemoryBuffer = synchronized {
require(acquiredBuffs.isEmpty,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ object GpuScalaUDF {
})

/**
* Determine if the UDF function implements the [[RapidsUDF]] interface, returning the instance
* if it does. The lambda wrapper that Spark applies to Java UDFs will be inspected if necessary
* to locate the user's UDF instance.
* Determine if the UDF function implements the [[com.nvidia.spark.RapidsUDF]] interface,
* returning the instance if it does. The lambda wrapper that Spark applies to Java UDFs will be
* inspected if necessary to locate the user's UDF instance.
*/
def getRapidsUDFInstance(function: AnyRef): Option[RapidsUDF] = {
function match {
Expand Down