pub struct DataPoint {
Show 43 fields pub data_set: Option<String>, pub hostname: String, pub execution_method: Option<ArgExecutionMethod>, pub device_codename: Option<Vec<String>>, pub transfer_strategy: Option<ArgTransferStrategy>, pub cpu_morsel_bytes: Option<usize>, pub gpu_morsel_bytes: Option<usize>, pub threads: Option<usize>, pub grid_size: Option<u32>, pub block_size: Option<u32>, pub hashing_scheme: Option<ArgHashingScheme>, pub hash_table_memory_type: Option<ArgMemType>, pub hash_table_memory_location: Option<Vec<u16>>, pub hash_table_proportions: Option<Vec<usize>>, pub hash_table_tuples: Option<usize>, pub cached_hash_table_tuples: Option<usize>, 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 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 build_ns: Option<f64>, pub probe_ns: Option<f64>, pub build_warm_up_ns: Option<f64>, pub probe_warm_up_ns: Option<f64>, pub build_copy_ns: Option<f64>, pub probe_copy_ns: Option<f64>, pub build_compute_ns: Option<f64>, pub probe_compute_ns: Option<f64>, pub build_cool_down_ns: Option<f64>, pub probe_cool_down_ns: Option<f64>, pub hash_table_malloc_ns: Option<f64>, pub relation_malloc_ns: Option<f64>, pub relation_gen_ns: Option<f64>,
}

Fields

data_set: Option<String>hostname: Stringexecution_method: Option<ArgExecutionMethod>device_codename: Option<Vec<String>>transfer_strategy: Option<ArgTransferStrategy>cpu_morsel_bytes: Option<usize>gpu_morsel_bytes: Option<usize>threads: Option<usize>grid_size: Option<u32>block_size: Option<u32>hashing_scheme: Option<ArgHashingScheme>hash_table_memory_type: Option<ArgMemType>hash_table_memory_location: Option<Vec<u16>>hash_table_proportions: Option<Vec<usize>>hash_table_tuples: Option<usize>cached_hash_table_tuples: Option<usize>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>data_distribution: Option<ArgDataDistribution>zipf_exponent: Option<f64>join_selectivity: Option<f64>warm_up: Option<bool>nvtx_run_id: Option<RangeId>build_ns: Option<f64>probe_ns: Option<f64>build_warm_up_ns: Option<f64>probe_warm_up_ns: Option<f64>build_copy_ns: Option<f64>probe_copy_ns: Option<f64>build_compute_ns: Option<f64>probe_compute_ns: Option<f64>build_cool_down_ns: Option<f64>probe_cool_down_ns: Option<f64>hash_table_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.