Skip to content

Commit

Permalink
Fix Scaladoc warnings in GpuScalaUDF and BufferSendState (NVIDIA#3236)
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Lowe <jlowe@nvidia.com>
Signed-off-by: Raza Jafri <rjafri@nvidia.com>
  • Loading branch information
jlowe authored and razajafri committed Aug 23, 2021
1 parent c97a672 commit d826376
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
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

0 comments on commit d826376

Please sign in to comment.