ruvector-postgres 2.0.5

High-performance PostgreSQL vector database extension v2 - pgvector drop-in replacement with 230+ SQL functions, SIMD acceleration, Flash Attention, GNN layers, hybrid search, multi-tenancy, self-healing, and self-learning capabilities
1
2
3
4
5
6
7
8
9
10
11
12
13
//! SQL function implementations for neural DAG learning

pub mod analysis;
pub mod attention;
pub mod config;
pub mod qudag;
pub mod status;

pub use analysis::*;
pub use attention::*;
pub use config::*;
pub use qudag::*;
pub use status::*;