rlx-llada2 0.2.5

LLaDA2 MoE diffusion LM + TIDE offload for RLX
Documentation
// RLX — versatile ML compiler + runtime.
// Copyright (C) 2026 Eugene Hauptmann, Nataliya Kosmyna.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 3.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

pub mod llada2;
pub mod tide;

pub use llada2::*;
pub use tide::{
    BlockDenoiseConfig, BlockDenoiseLoop, BlockDenoiseSampler, BlockDenoiseStepStats,
    BlockDiffusionForward, BlockForwardOutput, DenoiseStepCtx, GenerateConfig, GenerateForward,
    LLaDA2MoeConfig, MoeOffloadState, PredictiveOffloadInfo, PredictiveOffloadParams,
    TideOffloadStats, TideRunner, aggregate_offload_stats, device_memory_for_offload,
    enable_predictive_expert_offload, generate, gpu_expert_budget_from_device_memory,
    num_transfer_tokens_schedule, preview_predictive_offload, refresh_experts, run_block_diffusion,
};