pub enum Ltx2SpatialComposition {
SinglePass,
TiledTwoStage,
}Expand description
How much spatial work a resolved LTX-2 render splits into.
This is the only thing that decides whether an axis past the trained RoPE span is renderable, so it is resolved once — from the model and the requested pipeline — rather than inferred separately by each surface.
Variants§
SinglePass
One un-tiled denoise at the requested shape. The trained span is a hard ceiling: there is nothing downstream to renormalize positions.
TiledTwoStage
Stage 1 at half the target, one x2 spatial rung, then a stage-2 refinement over latent tiles each brought back inside the trained span.
Trait Implementations§
Source§impl Clone for Ltx2SpatialComposition
impl Clone for Ltx2SpatialComposition
Source§fn clone(&self) -> Ltx2SpatialComposition
fn clone(&self) -> Ltx2SpatialComposition
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 moreimpl Copy for Ltx2SpatialComposition
Source§impl Debug for Ltx2SpatialComposition
impl Debug for Ltx2SpatialComposition
Source§impl Default for Ltx2SpatialComposition
impl Default for Ltx2SpatialComposition
Source§fn default() -> Ltx2SpatialComposition
fn default() -> Ltx2SpatialComposition
Returns the “default value” for a type. Read more
impl Eq for Ltx2SpatialComposition
Source§impl PartialEq for Ltx2SpatialComposition
impl PartialEq for Ltx2SpatialComposition
impl StructuralPartialEq for Ltx2SpatialComposition
Auto Trait Implementations§
impl Freeze for Ltx2SpatialComposition
impl RefUnwindSafe for Ltx2SpatialComposition
impl Send for Ltx2SpatialComposition
impl Sync for Ltx2SpatialComposition
impl Unpin for Ltx2SpatialComposition
impl UnsafeUnpin for Ltx2SpatialComposition
impl UnwindSafe for Ltx2SpatialComposition
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.