File size: 13,994 Bytes
26cf661 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 | //! Access Graph — learns memory access topology from observations.
//!
//! Nodes are memory regions. Edges are causal access correlations
//! with timing. Clusters are co-access groups (proto-hyperedges).
//!
//! This replaces the Python GraphBuilder with sub-microsecond performance.
use pyo3::prelude::*;
use std::collections::HashMap;
/// A single access event recorded by the membrane.
#[derive(Clone, Debug)]
pub struct AccessEvent {
pub timestamp_ns: u64,
pub path: String,
pub size_bytes: u64,
}
/// Causal edge: source accessed BEFORE target, with timing statistics.
#[derive(Clone, Debug)]
pub struct CausalEdge {
pub source_id: u32,
pub target_id: u32,
pub count: u32,
pub mean_delta_ns: f64,
pub std_delta_ns: f64,
pub weight: f64,
}
impl CausalEdge {
fn new(source_id: u32, target_id: u32) -> Self {
Self {
source_id,
target_id,
count: 0,
mean_delta_ns: 0.0,
std_delta_ns: 0.0,
weight: 0.0,
}
}
/// Welford online update for mean and variance of timing deltas.
fn add_observation(&mut self, delta_ns: f64) {
self.count += 1;
let n = self.count as f64;
let old_mean = self.mean_delta_ns;
self.mean_delta_ns += (delta_ns - old_mean) / n;
// Welford variance accumulator
self.std_delta_ns += (delta_ns - old_mean) * (delta_ns - self.mean_delta_ns);
}
/// Finalize statistics after all observations.
fn finalize(&mut self) {
if self.count > 1 {
self.std_delta_ns = (self.std_delta_ns / (self.count as f64 - 1.0)).sqrt();
} else {
self.std_delta_ns = 0.0;
}
// Weight: frequency × timing consistency
// High count + low variance = strong causal edge
let consistency = 1.0 / (1.0 + self.std_delta_ns / self.mean_delta_ns.max(1.0));
self.weight = self.count as f64 * consistency;
}
}
/// A discovered cluster of co-accessed regions (proto-hyperedge).
#[derive(Clone, Debug)]
pub struct Cluster {
pub id: u32,
pub member_ids: Vec<u32>,
}
/// Node info: a tracked memory region.
#[derive(Clone, Debug)]
pub struct NodeInfo {
pub id: u32,
pub path: String,
pub access_count: u32,
pub total_bytes: u64,
pub first_access_ns: u64,
pub last_access_ns: u64,
}
/// The access graph — learns memory access topology.
///
/// Exposed to Python via PyO3.
#[pyclass]
pub struct AccessGraph {
/// Path → node ID mapping
path_to_id: HashMap<String, u32>,
/// Node ID → info
nodes: Vec<NodeInfo>,
/// (source_id, target_id) → edge
edges: HashMap<(u32, u32), CausalEdge>,
/// Discovered clusters
pub clusters: Vec<Cluster>,
/// Causal window in nanoseconds
causal_window_ns: u64,
/// Cluster co-access threshold
cluster_threshold: f64,
/// Whether build() has been called
built: bool,
/// Per-node successor list (sorted by weight, top-K)
successors: Vec<Vec<(u32, f64, f64)>>, // (target_id, weight, mean_delta_ms)
/// Node → cluster membership
cluster_map: Vec<Option<u32>>,
}
#[pymethods]
impl AccessGraph {
#[new]
#[pyo3(signature = (causal_window_ns=5_000_000, cluster_threshold=0.7))]
pub fn new(causal_window_ns: u64, cluster_threshold: f64) -> Self {
Self {
path_to_id: HashMap::new(),
nodes: Vec::new(),
edges: HashMap::new(),
clusters: Vec::new(),
causal_window_ns,
cluster_threshold,
built: false,
successors: Vec::new(),
cluster_map: Vec::new(),
}
}
/// Build the graph from a list of (timestamp_ns, path, size_bytes) events.
///
/// Called from Python with the membrane's access log.
pub fn build(&mut self, events: Vec<(u64, String, u64)>) {
if events.is_empty() {
return;
}
// Phase 1: Register nodes
for (ts, path, size) in &events {
let id = self.get_or_create_node(path);
let node = &mut self.nodes[id as usize];
node.access_count += 1;
node.total_bytes += size;
if *ts < node.first_access_ns {
node.first_access_ns = *ts;
}
if *ts > node.last_access_ns {
node.last_access_ns = *ts;
}
}
// Phase 2: Build causal edges (events are already sorted by timestamp)
let n = events.len();
for i in 0..n {
let (ts_i, ref path_i, _) = events[i];
let id_i = self.path_to_id[path_i];
for j in (i + 1)..n {
let (ts_j, ref path_j, _) = events[j];
let delta = ts_j - ts_i;
if delta > self.causal_window_ns {
break;
}
let id_j = self.path_to_id[path_j];
if id_i == id_j {
continue;
}
let edge = self.edges
.entry((id_i, id_j))
.or_insert_with(|| CausalEdge::new(id_i, id_j));
edge.add_observation(delta as f64);
}
}
// Finalize edges
for edge in self.edges.values_mut() {
edge.finalize();
}
// Phase 3: Discover clusters
self.discover_clusters();
// Phase 4: Build successor lists for fast prediction
self.build_successors();
self.built = true;
}
/// Get node count.
pub fn node_count(&self) -> usize {
self.nodes.len()
}
/// Get edge count.
pub fn edge_count(&self) -> usize {
self.edges.len()
}
/// Get strong edge count (weight >= threshold).
fn strong_edge_count(&self, min_weight: f64) -> usize {
self.edges.values().filter(|e| e.weight >= min_weight).count()
}
/// Get cluster count.
pub fn cluster_count(&self) -> usize {
self.clusters.len()
}
/// Get node access counts as (path, count) pairs.
pub fn get_node_stats(&self) -> Vec<(String, u32)> {
self.nodes.iter()
.map(|n| (n.path.clone(), n.access_count))
.collect()
}
/// Get top edges by weight as (source_path, target_path, count, mean_delta_ms, weight).
fn get_top_edges(&self, limit: usize) -> Vec<(String, String, u32, f64, f64)> {
let mut edges: Vec<_> = self.edges.values().collect();
edges.sort_by(|a, b| b.weight.partial_cmp(&a.weight).unwrap());
edges.iter()
.take(limit)
.map(|e| {
let src = &self.nodes[e.source_id as usize].path;
let tgt = &self.nodes[e.target_id as usize].path;
(src.clone(), tgt.clone(), e.count, e.mean_delta_ns / 1_000_000.0, e.weight)
})
.collect()
}
/// Check if graph has been built.
fn is_built(&self) -> bool {
self.built
}
}
// Non-PyO3 internal methods
impl AccessGraph {
fn get_or_create_node(&mut self, path: &str) -> u32 {
if let Some(&id) = self.path_to_id.get(path) {
return id;
}
let id = self.nodes.len() as u32;
self.path_to_id.insert(path.to_string(), id);
self.nodes.push(NodeInfo {
id,
path: path.to_string(),
access_count: 0,
total_bytes: 0,
first_access_ns: u64::MAX,
last_access_ns: 0,
});
id
}
fn discover_clusters(&mut self) {
let n = self.nodes.len();
if n < 2 {
return;
}
// Build co-access count matrix (sparse)
let mut cocount: HashMap<(u32, u32), u32> = HashMap::new();
for ((src, tgt), edge) in &self.edges {
*cocount.entry((*src, *tgt)).or_default() += edge.count;
*cocount.entry((*tgt, *src)).or_default() += edge.count;
}
// Build adjacency from pairs above threshold
let mut adjacency: Vec<Vec<u32>> = vec![Vec::new(); n];
for i in 0..n {
for j in (i + 1)..n {
let co = cocount.get(&(i as u32, j as u32)).copied().unwrap_or(0);
let min_count = self.nodes[i].access_count
.min(self.nodes[j].access_count)
.max(1);
let ratio = co as f64 / min_count as f64;
if ratio >= self.cluster_threshold {
adjacency[i].push(j as u32);
adjacency[j].push(i as u32);
}
}
}
// BFS to find connected components
let mut visited = vec![false; n];
let mut cluster_id: u32 = 0;
// Initialize cluster map
self.cluster_map = vec![None; n];
for start in 0..n {
if visited[start] || adjacency[start].is_empty() {
continue;
}
let mut component = Vec::new();
let mut queue = vec![start];
while let Some(node) = queue.pop() {
if visited[node] {
continue;
}
visited[node] = true;
component.push(node as u32);
for &neighbor in &adjacency[node] {
if !visited[neighbor as usize] {
queue.push(neighbor as usize);
}
}
}
if component.len() >= 2 {
for &member_id in &component {
self.cluster_map[member_id as usize] = Some(cluster_id);
}
self.clusters.push(Cluster {
id: cluster_id,
member_ids: component,
});
cluster_id += 1;
}
}
}
fn build_successors(&mut self) {
let n = self.nodes.len();
let max_weight = self.edges.values()
.map(|e| e.weight)
.fold(0.0f64, f64::max)
.max(1.0);
self.successors = vec![Vec::new(); n];
for edge in self.edges.values() {
if edge.weight < 1.0 {
continue;
}
let norm_weight = edge.weight / max_weight;
self.successors[edge.source_id as usize].push((
edge.target_id,
norm_weight,
edge.mean_delta_ns / 1_000_000.0,
));
}
// Sort by weight descending, keep top 10
for succs in &mut self.successors {
succs.sort_by(|a, b| b.1.partial_cmp(&a.1).unwrap());
succs.truncate(10);
}
}
/// Get successors for a node by path. Used by the predictor.
pub fn get_successors(&self, path: &str) -> &[(u32, f64, f64)] {
if let Some(&id) = self.path_to_id.get(path) {
&self.successors[id as usize]
} else {
&[]
}
}
/// Get cluster members for a node by path.
pub fn get_cluster_members(&self, path: &str) -> Option<&[u32]> {
let &id = self.path_to_id.get(path)?;
let cluster_id = self.cluster_map[id as usize]?;
Some(&self.clusters[cluster_id as usize].member_ids)
}
/// Get path for a node ID.
pub fn get_path(&self, id: u32) -> Option<&str> {
self.nodes.get(id as usize).map(|n| n.path.as_str())
}
/// Get node ID for a path.
pub fn get_id(&self, path: &str) -> Option<u32> {
self.path_to_id.get(path).copied()
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_build_simple_graph() {
let mut graph = AccessGraph::new(5_000_000, 0.7);
// Simulate: A→B→C repeated 10 times, 1ms apart
let mut events = Vec::new();
for i in 0..10 {
let base = i * 3_000_000; // 3ms between iterations
events.push((base as u64, "A".to_string(), 100));
events.push((base as u64 + 1_000_000, "B".to_string(), 100));
events.push((base as u64 + 2_000_000, "C".to_string(), 100));
}
graph.build(events);
assert_eq!(graph.node_count(), 3);
assert!(graph.edge_count() > 0);
assert!(graph.is_built());
// A→B should be a strong edge
let top = graph.get_top_edges(5);
assert!(!top.is_empty());
println!("Top edges: {:?}", top);
}
#[test]
fn test_cluster_discovery() {
let mut graph = AccessGraph::new(3_000_000, 0.6);
// Cluster 1: X,Y,Z always together (tight timing)
// Cluster 2: P,Q always together
// Gap between clusters
let mut events = Vec::new();
for i in 0..30 {
let base = i * 20_000_000; // 20ms between iterations
// Cluster 1
events.push((base as u64, "X".to_string(), 100));
events.push((base as u64 + 100_000, "Y".to_string(), 100));
events.push((base as u64 + 200_000, "Z".to_string(), 100));
// Gap
// Cluster 2
events.push((base as u64 + 10_000_000, "P".to_string(), 100));
events.push((base as u64 + 10_100_000, "Q".to_string(), 100));
}
graph.build(events);
assert!(graph.cluster_count() >= 2, "Should find at least 2 clusters, found {}", graph.cluster_count());
}
#[test]
fn test_successor_lookup() {
let mut graph = AccessGraph::new(5_000_000, 0.7);
let mut events = Vec::new();
for i in 0..50 {
let base = i * 5_000_000;
events.push((base as u64, "src".to_string(), 100));
events.push((base as u64 + 1_000_000, "dst".to_string(), 100));
}
graph.build(events);
let succs = graph.get_successors("src");
assert!(!succs.is_empty(), "src should have successors");
assert_eq!(graph.get_path(succs[0].0), Some("dst"));
}
}
|