pub struct TilingPlanInfo {
pub op_name: String,
pub tiles: Vec<(String, u32)>,
pub reuse_factor: f64,
}Expand description
A tiling plan passed through to backends.
Fields§
§op_name: StringOperation name.
tiles: Vec<(String, u32)>Tile dimension configurations.
reuse_factor: f64Cache reuse factor.
Trait Implementations§
Source§impl Clone for TilingPlanInfo
impl Clone for TilingPlanInfo
Source§fn clone(&self) -> TilingPlanInfo
fn clone(&self) -> TilingPlanInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for TilingPlanInfo
impl RefUnwindSafe for TilingPlanInfo
impl Send for TilingPlanInfo
impl Sync for TilingPlanInfo
impl Unpin for TilingPlanInfo
impl UnsafeUnpin for TilingPlanInfo
impl UnwindSafe for TilingPlanInfo
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