hashing.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019-2022, NVIDIA CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #pragma once
17 
18 #include <cudf/table/table.hpp>
20 
22 
23 namespace cudf {
24 
25 using hash_value_type = uint32_t;
26 
36 enum class hash_id {
37  HASH_IDENTITY = 0,
38  HASH_MURMUR3,
39  HASH_SPARK_MURMUR3,
40  HASH_MD5
41 };
42 
46 static constexpr uint32_t DEFAULT_HASH_SEED = 0;
47 
58 std::unique_ptr<column> hash(
59  table_view const& input,
60  hash_id hash_function = hash_id::HASH_MURMUR3,
61  uint32_t seed = DEFAULT_HASH_SEED,
62  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
63  // end of group
65 } // namespace cudf
per_device_resource.hpp
table_view.hpp
Class definitions for (mutable)_table_view
cudf::hash_value_type
uint32_t hash_value_type
Type of hash value.
Definition: hashing.hpp:25
cudf::table_view
A set of cudf::column_view's of the same size.
Definition: table_view.hpp:187
cudf::hash
std::unique_ptr< column > hash(table_view const &input, hash_id hash_function=hash_id::HASH_MURMUR3, uint32_t seed=DEFAULT_HASH_SEED, rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Computes the hash value of each row in the input set of columns.
cudf::hash_id
hash_id
Identifies the hash function to be used.
Definition: hashing.hpp:36
cudf
cuDF interfaces
Definition: aggregation.hpp:34
cudf::hash_id::HASH_IDENTITY
@ HASH_IDENTITY
Identity hash function that simply returns the key to be hashed.
table.hpp
Class definition for cudf::table.
rmm::mr::device_memory_resource