Packages

o

com.nvidia.spark.rapids

GpuMapUtils

object GpuMapUtils

Provide a set of APIs to manipulate map columns in common ways. CUDF does not officially support maps so we store it as a list of key/value structs.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GpuMapUtils
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val KEY_INDEX: Int
  5. val VALUE_INDEX: Int
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def assertNoNullKeys(mapView: ColumnView): Unit
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. def duplicateMapKeyFoundError: Throwable
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def getKeysAsListView(input: ColumnView): ColumnView

    Get the keys from a map column as a list.

    Get the keys from a map column as a list.

    input

    the input map column.

    returns

    a list of the keys as a column view.

  15. def getMapValueOrThrow(map: ColumnVector, indices: ColumnVector, dtype: DataType, origin: Origin): ColumnVector
  16. def getValuesAsListView(input: ColumnView): ColumnView

    Get the values from a map column as a list.

    Get the values from a map column as a list.

    input

    the input map column.

    returns

    a list of the values as a column view.

  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. def replaceExplodedKeyAsView(mapCol: ColumnView, newKey: ColumnView): ColumnView

    Replace the keys in a map.

    Replace the keys in a map. The values are the underlying exploded keys (not in a list)

    mapCol

    the original map column

    newKey

    the new keys column

    returns

    and updated map column view

  23. def replaceExplodedValueAsView(mapCol: ColumnView, newValue: ColumnView): ColumnView

    Replace the values in a map.

    Replace the values in a map. The values are the underlying exploded values (not in a list)

    mapCol

    the original map column

    newValue

    the new values column

    returns

    and updated map column view

  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped