#[repr(u32)]pub enum RopeMultiMode {
Mrope = 8,
Imrope = 40,
}Expand description
MROPE variant. Wire-level values match the ggml GGML_ROPE_TYPE_* enum.
Variants§
Mrope = 8
Standard multi-section RoPE; contiguous sections.
Imrope = 40
Interleaved multi-section RoPE; sector % 3 cycles through 3 axes.
Used by Qwen3.5 / Qwen3.6.
Trait Implementations§
Source§impl Clone for RopeMultiMode
impl Clone for RopeMultiMode
Source§fn clone(&self) -> RopeMultiMode
fn clone(&self) -> RopeMultiMode
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 moreSource§impl Debug for RopeMultiMode
impl Debug for RopeMultiMode
Source§impl PartialEq for RopeMultiMode
impl PartialEq for RopeMultiMode
Source§fn eq(&self, other: &RopeMultiMode) -> bool
fn eq(&self, other: &RopeMultiMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RopeMultiMode
impl Eq for RopeMultiMode
impl StructuralPartialEq for RopeMultiMode
Auto Trait Implementations§
impl Freeze for RopeMultiMode
impl RefUnwindSafe for RopeMultiMode
impl Send for RopeMultiMode
impl Sync for RopeMultiMode
impl Unpin for RopeMultiMode
impl UnsafeUnpin for RopeMultiMode
impl UnwindSafe for RopeMultiMode
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