pub struct DataPoint {
Show 43 fields pub data_set: Option<String>, pub hostname: String, pub histogram_algorithm: Option<ArgHistogramAlgorithm>, pub partition_algorithm: Option<ArgRadixPartitionAlgorithm>, pub partition_algorithm_2nd: Option<ArgRadixPartitionAlgorithm>, pub execution_method: Option<ArgExecutionMethod>, pub device_codename: Option<Vec<String>>, pub dmem_buffer_size: Option<usize>, pub threads: Option<usize>, pub grid_size: Option<u32>, pub block_size: Option<u32>, pub radix_bits_fst: Option<u32>, pub radix_bits_snd: Option<u32>, pub radix_bits_trd: Option<u32>, pub hashing_scheme: Option<ArgHashingScheme>, pub partitions_memory_type: Option<ArgMemType>, pub partitions_memory_location: Option<Vec<u16>>, pub partitions_proportions: Option<Vec<usize>>, pub state_memory_type: Option<ArgMemType>, pub state_memory_location: Option<u16>, pub tuple_bytes: Option<ArgTupleBytes>, pub relation_memory_type: Option<ArgMemType>, pub page_type: Option<ArgPageType>, pub inner_relation_memory_location: Option<u16>, pub outer_relation_memory_location: Option<u16>, pub build_tuples: Option<usize>, pub build_bytes: Option<usize>, pub probe_tuples: Option<usize>, pub probe_bytes: Option<usize>, pub cached_build_tuples: Option<usize>, pub cached_probe_tuples: Option<usize>, pub data_distribution: Option<ArgDataDistribution>, pub zipf_exponent: Option<f64>, pub join_selectivity: Option<f64>, pub warm_up: Option<bool>, pub nvtx_run_id: Option<RangeId>, pub prefix_sum_ns: Option<f64>, pub partition_ns: Option<f64>, pub join_ns: Option<f64>, pub partitions_malloc_ns: Option<f64>, pub state_malloc_ns: Option<f64>, pub relation_malloc_ns: Option<f64>, pub relation_gen_ns: Option<f64>,
}

Fields

data_set: Option<String>hostname: Stringhistogram_algorithm: Option<ArgHistogramAlgorithm>partition_algorithm: Option<ArgRadixPartitionAlgorithm>partition_algorithm_2nd: Option<ArgRadixPartitionAlgorithm>execution_method: Option<ArgExecutionMethod>device_codename: Option<Vec<String>>dmem_buffer_size: Option<usize>threads: Option<usize>grid_size: Option<u32>block_size: Option<u32>radix_bits_fst: Option<u32>radix_bits_snd: Option<u32>radix_bits_trd: Option<u32>hashing_scheme: Option<ArgHashingScheme>partitions_memory_type: Option<ArgMemType>partitions_memory_location: Option<Vec<u16>>partitions_proportions: Option<Vec<usize>>state_memory_type: Option<ArgMemType>state_memory_location: Option<u16>tuple_bytes: Option<ArgTupleBytes>relation_memory_type: Option<ArgMemType>page_type: Option<ArgPageType>inner_relation_memory_location: Option<u16>outer_relation_memory_location: Option<u16>build_tuples: Option<usize>build_bytes: Option<usize>probe_tuples: Option<usize>probe_bytes: Option<usize>cached_build_tuples: Option<usize>cached_probe_tuples: Option<usize>data_distribution: Option<ArgDataDistribution>zipf_exponent: Option<f64>join_selectivity: Option<f64>warm_up: Option<bool>nvtx_run_id: Option<RangeId>prefix_sum_ns: Option<f64>partition_ns: Option<f64>join_ns: Option<f64>partitions_malloc_ns: Option<f64>state_malloc_ns: Option<f64>relation_malloc_ns: Option<f64>relation_gen_ns: Option<f64>

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Serialize this value into the given Serde serializer. Read more

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

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. 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.