datatypes::compute::kernels

Module cmp

Expand description

Comparison kernels for Arrays.

These kernels can leverage SIMD if available on your system. Currently no runtime detection is provided, you should enable the specific SIMD intrinsics using RUSTFLAGS="-C target-feature=+avx2" for example. See the documentation here for more information.

Functions§

  • Compares two [GenericByteViewArray] at index left_idx and right_idx
  • Comparing two [GenericByteViewArray] at index left_idx and right_idx
  • Perform left IS DISTINCT FROM right operation on two [Datum]
  • Perform left == right operation on two [Datum].
  • Perform left > right operation on two [Datum].
  • Perform left >= right operation on two [Datum].
  • Perform left < right operation on two [Datum].
  • Perform left <= right operation on two [Datum].
  • Perform left != right operation on two [Datum].
  • Perform left IS NOT DISTINCT FROM right operation on two [Datum]