pub struct TilingResult {
pub nodes_tiled: usize,
pub loops_unrolled: usize,
pub estimated_cache_improvement: f64,
pub estimated_speedup: f64,
}Expand description
Result of applying tiling transformations.
Fields§
§nodes_tiled: usizeNumber of nodes that were tiled
loops_unrolled: usizeNumber of loops unrolled
estimated_cache_improvement: f64Estimated cache hit rate improvement (0.0 to 1.0)
estimated_speedup: f64Estimated speedup factor
Implementations§
Source§impl TilingResult
impl TilingResult
Trait Implementations§
Source§impl Clone for TilingResult
impl Clone for TilingResult
Source§fn clone(&self) -> TilingResult
fn clone(&self) -> TilingResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TilingResult
impl Debug for TilingResult
Source§impl<'de> Deserialize<'de> for TilingResult
impl<'de> Deserialize<'de> for TilingResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TilingResult
impl PartialEq for TilingResult
Source§impl Serialize for TilingResult
impl Serialize for TilingResult
impl StructuralPartialEq for TilingResult
Auto Trait Implementations§
impl Freeze for TilingResult
impl RefUnwindSafe for TilingResult
impl Send for TilingResult
impl Sync for TilingResult
impl Unpin for TilingResult
impl UnwindSafe for TilingResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more