Prefetch a batch of nodes (called during BFS frontier expansion).
(&self, node_ids: &[u32])
| 71 | |
| 72 | /// Prefetch a batch of nodes (called during BFS frontier expansion). |
| 73 | pub fn prefetch_batch(&self, node_ids: &[u32]) { |
| 74 | for &id in node_ids { |
| 75 | self.prefetch_node(id); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | /// Evaluate graph memory pressure and return promotion/demotion hints. |
| 80 | /// |
nothing calls this directly
no test coverage detected