Skip to content

Commit

Permalink
Substitute murmurHash32 for spark32BitMurmurHash3 (#10652)
Browse files Browse the repository at this point in the history
Fixes #10487

Signed-off-by: Gera Shegalov <[email protected]>
  • Loading branch information
gerashegalov authored Apr 3, 2024
1 parent afac8e3 commit 44421e9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -80,7 +80,7 @@ object GpuMurmur3Hash {
HashUtils.normalizeInput(cv).asInstanceOf[ColumnView]
}
withResource(normalized) { _ =>
ColumnVector.spark32BitMurmurHash3(seed, normalized)
Hash.murmurHash32(seed, normalized)
}
}
}
Expand Down

0 comments on commit 44421e9

Please sign in to comment.