oxicuda-gnn 0.1.6

Graph Neural Network primitives for OxiCUDA: sparse graph representations (CSR/COO/heterogeneous), message passing framework, GCN/GAT/GraphSAGE/GIN layers, global and hierarchical graph pooling — pure Rust, zero CUDA SDK dependency.
Documentation
1
2
3
4
5
6
7
//! GNN layer implementations.

pub mod gat;
pub mod gat_v2;
pub mod gcn;
pub mod gin;
pub mod sage;