From ca148252ffcfb82b64de15c31385ca329e31f0ad Mon Sep 17 00:00:00 2001 From: Gera Shegalov Date: Mon, 1 Apr 2024 15:35:25 -0700 Subject: [PATCH] Substitute murmurHash32 for spark32BitMurmurHash3 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) } } }