ruvector-attention 2.1.0

Attention mechanisms for ruvector - geometric, graph, and sparse attention
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # ruvector-attention SDK
//!
//! High-level, ergonomic APIs for building attention mechanisms.

pub mod builder;
pub mod pipeline;
pub mod presets;

pub use builder::{flash, multi_head, scaled_dot, AttentionBuilder, AttentionType};
pub use pipeline::{AttentionPipeline, NormType, PipelineStage};
pub use presets::{for_graphs, for_large_scale, for_sequences, AttentionPreset};