Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion pegainfer-qwen3/src/eagle3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,17 @@ use pegainfer_core::tensor::DeviceVec;

use crate::config::Eagle3Config;

mod forward;
mod loading;
mod reservation;

// Wired into the KV budget by the forward-pass PR; kept here as the skeleton lands.
// Consumed by the scheduler PR that drives the drafter; exported as the forward
// path lands.
#[allow(unused_imports)]
pub(crate) use forward::Eagle3RequestState;
#[allow(unused_imports)]
pub(crate) use forward::Eagle3Scratch;
// Wired into the KV budget by the scheduler PR; kept here as the skeleton lands.
#[allow(unused_imports)]
pub(crate) use reservation::Eagle3MemoryReservation;

Expand Down
Loading
Loading