pub struct HashTable<T: DeviceCopy + KeyAttribute> { /* private fields */ }
Expand description

Hash table for CpuHashJoin and CudaHashJoin.

Implementations

Create a new CPU hash table.

The hash table can be used on CPUs. In the case of NVLink 2.0 on POWER9, it can also be used on GPUs.

Create a new GPU hash table.

The hash table can be used on GPUs. It cannot always be used on CPUs, due to the possibility of using GPU device memory. This also holds true for NVLink 2.0 on POWER9.

Create a new hash table from another hash table.

Copies the contents of the source hash table into the new hash table.

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Lock memory

Unlock memory

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.