diff --git a/cpp/include/cudf/hashing.hpp b/cpp/include/cudf/hashing.hpp index c3a57af1358..64a78da1803 100644 --- a/cpp/include/cudf/hashing.hpp +++ b/cpp/include/cudf/hashing.hpp @@ -63,7 +63,7 @@ static constexpr uint32_t DEFAULT_HASH_SEED = 0; * * @returns A column where each row is the hash of a column from the input */ -std::unique_ptr hash( +[[deprecated]] std::unique_ptr hash( table_view const& input, hash_id hash_function = hash_id::HASH_MURMUR3, uint32_t seed = DEFAULT_HASH_SEED, @@ -115,6 +115,8 @@ std::unique_ptr murmurhash3_x64_128( /** * @brief Computes the MurmurHash3 32-bit hash value of each row in the given table * + * @deprecated Since 24.04 + * * This function computes the hash similar to MurmurHash3_x86_32 with special processing * to match Spark's implementation results. * @@ -125,7 +127,7 @@ std::unique_ptr
murmurhash3_x64_128( * * @returns A column where each row is the hash of a row from the input */ -std::unique_ptr spark_murmurhash3_x86_32( +[[deprecated]] std::unique_ptr spark_murmurhash3_x86_32( table_view const& input, uint32_t seed = DEFAULT_HASH_SEED, rmm::cuda_stream_view stream = cudf::get_default_stream(), diff --git a/cpp/tests/CMakeLists.txt b/cpp/tests/CMakeLists.txt index 4c07970714d..94ae349896c 100644 --- a/cpp/tests/CMakeLists.txt +++ b/cpp/tests/CMakeLists.txt @@ -175,7 +175,6 @@ ConfigureTest( hashing/sha256_test.cpp hashing/sha384_test.cpp hashing/sha512_test.cpp - hashing/spark_murmurhash3_x86_32_test.cpp hashing/xxhash_64_test.cpp )