mold-ai-inference 0.13.1

Candle-based inference engine for mold — FLUX, SDXL, SD3.5, Z-Image diffusion models
Documentation
pub(crate) mod adaptive_offload;
pub mod attention;
mod cache;
pub(crate) mod cfg_plus_ddim;
pub mod controlnet;
pub mod device;
mod encoders;
pub mod engine;
pub(crate) mod engine_base;
pub mod error;
#[cfg(feature = "expand")]
pub mod expand;
mod factory;
pub mod flux;
pub mod flux2;
mod image;
pub(crate) mod img2img;
pub mod img_utils;
pub mod loader;
pub mod ltx2;
pub mod ltx_video;
pub mod model_registry;
pub(crate) mod nvfp4;
pub mod progress;
pub mod qwen_image;
pub mod scheduler;
pub mod sd15;
pub mod sd3;
pub mod sdxl;
pub mod shared_pool;
pub mod upscaler;
pub mod vae_tiling;
pub(crate) mod weight_loader;
pub mod wuerstchen;
pub mod zimage;

pub use device::reclaim_gpu_memory;
pub use engine::{InferenceEngine, LoadStrategy};
pub use error::InferenceError;
pub use factory::{create_engine, create_engine_with_pool};
pub use flux::FluxEngine;
pub use flux2::Flux2Engine;
pub use ltx2::Ltx2Engine;
pub use ltx_video::LtxVideoEngine;
pub use model_registry::known_models;
pub use progress::ProgressEvent;
pub use qwen_image::QwenImageEngine;
pub use sd15::SD15Engine;
pub use sd3::SD3Engine;
pub use sdxl::SDXLEngine;
pub use upscaler::{create_upscale_engine, UpscaleEngine};
pub use wuerstchen::WuerstchenEngine;
pub use zimage::ZImageEngine;