wgml 0.2.0

Cross-platform GPU LLM inference.
Documentation
//! Primitives for building LLM inferences.

mod batched_multiquery_attention;
mod layernorm;
mod rms_norm;
mod rope;
mod silu;
mod softmax;
mod unary;

pub use batched_multiquery_attention::{
    BatchedMultiqueryAttention, BatchedMultiqueryAttentionParams,
};
pub use layernorm::LayerNorm;
pub use rms_norm::RmsNorm;
pub use rope::{RoPE, RoPEShape};
pub use silu::Silu;
pub use softmax::SoftMax;
pub use unary::{Unary, UnaryOp};