Struct hashjoin::measurement::data_point::DataPoint
source · [−]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: String
execution_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
sourceimpl DataPoint
impl DataPoint
pub fn new() -> Result<DataPoint>
pub(crate) fn fill_from_cmd_options(&self, cmd: &CmdOpt) -> Result<DataPoint>
pub fn fill_from_hash_join_bench<T>(&self, hjb: &HashJoinBench<T>) -> DataPoint
pub fn fill_from_join_data<T: DeviceCopy>(
&self,
join_data: &JoinData<T>
) -> DataPoint
pub fn set_init_time(&self, malloc: Duration, data_gen: Duration) -> DataPoint
pub fn set_gpu_threads(
&self,
grid_size: &GridSize,
block_size: &BlockSize
) -> DataPoint
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for DataPoint
impl Send for DataPoint
impl Sync for DataPoint
impl Unpin for DataPoint
impl UnwindSafe for DataPoint
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more