From a3c1f5d261e8ec6150e82f5b25c51b736bb05edb Mon Sep 17 00:00:00 2001 From: Gera Shegalov Date: Tue, 2 Apr 2024 20:46:59 -0700 Subject: [PATCH] Substitute murmurHash32 for spark32BitMurmurHash3 (#10652) Fixes #10487 Signed-off-by: Gera Shegalov --- .../scala/org/apache/spark/sql/rapids/HashFunctions.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql-plugin/src/main/scala/org/apache/spark/sql/rapids/HashFunctions.scala b/sql-plugin/src/main/scala/org/apache/spark/sql/rapids/HashFunctions.scala index f02107e1458..36236b23936 100644 --- a/sql-plugin/src/main/scala/org/apache/spark/sql/rapids/HashFunctions.scala +++ b/sql-plugin/src/main/scala/org/apache/spark/sql/rapids/HashFunctions.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023, NVIDIA CORPORATION. + * Copyright (c) 2020-2024, NVIDIA CORPORATION. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,7 +80,7 @@ object GpuMurmur3Hash { HashUtils.normalizeInput(cv).asInstanceOf[ColumnView] } withResource(normalized) { _ => - ColumnVector.spark32BitMurmurHash3(seed, normalized) + Hash.murmurHash32(seed, normalized) } } }