aprender-graph 0.29.0

GPU-first embedded graph database for code analysis (call graphs, dependencies, AST traversals)
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
# GPU BFS Implementation Status

**Task**: p3-gpu-bfs (GPU BFS kernel implementation)
**Status**: 65% Complete (Infrastructure Ready)
**Estimated Remaining**: ~4 hours of focused GPU integration work

---

## ✅ Completed Infrastructure (65%)

### 1. GPU Buffer Management ✅
**File**: `src/gpu/buffer.rs` (128 lines)

- `GpuCsrBuffers` struct for uploading CSR data to GPU
- Zero-copy transfers using bytemuck
- Optional edge weights for unweighted graphs
- 2 tests (requires GPU hardware, marked as ignored)

```rust
pub struct GpuCsrBuffers {
    pub num_nodes: usize,
    pub num_edges: usize,
    pub row_offsets: wgpu::Buffer,
    pub col_indices: wgpu::Buffer,
    pub edge_weights: Option<wgpu::Buffer>,
}
```

### 2. WGSL Compute Shaders ✅
**Files**:
- `src/gpu/shaders/bfs.wgsl` (65 lines) - Frontier-based BFS (Gunrock-style)
- `src/gpu/shaders/bfs_simple.wgsl` (52 lines) - Level-synchronous BFS ⭐ **RECOMMENDED**

**Recommended Approach**: Start with `bfs_simple.wgsl` (level-synchronous)
- Simpler to implement than frontier-based
- No frontier compaction needed
- Same O(V+E) complexity
- Easier to debug

**Algorithm**:
```wgsl
for level in 0..num_nodes {
    // Process all nodes at current distance
    // Update unvisited neighbors to distance + 1
    // Set updated flag if work was done
    // Break if no updates
}
```

### 3. Rust API Design ✅
**File**: `src/gpu/bfs.rs` (152 lines)

```rust
pub struct GpuBfsResult {
    pub distances: Vec<u32>,  // u32::MAX for unreachable
    pub visited_count: usize,
}

pub async fn gpu_bfs(
    device: &GpuDevice,
    buffers: &GpuCsrBuffers,
    source: NodeId,
) -> Result<GpuBfsResult>
```

**API Methods**:
- `distance(node) -> Option<u32>` - Get distance to specific node
- `is_reachable(node) -> bool` - Check reachability

### 4. Test Scaffolding ✅
**File**: `src/gpu/bfs.rs` (tests module)

3 comprehensive tests (all ignored for GPU hardware):
- `test_gpu_bfs_simple_chain` - Chain graph 0→1→2
- `test_gpu_bfs_disconnected` - Disconnected components
- `test_gpu_bfs_result_api` - API methods (unit test, passing)

### 5. CSR Accessor Methods ✅
**File**: `src/gpu/device.rs`

Helper methods for GPU operations:
- `create_buffer_init()` - Create buffer with initial data
- `create_buffer()` - Create empty buffer
- `device()` / `queue()` - Access wgpu internals

---

## ⏸️ Remaining Integration Work (35%, ~4 hours)

### Step 1: Load WGSL Shader (~15 min)

```rust
// In src/gpu/bfs.rs
const SHADER: &str = include_str!("shaders/bfs_simple.wgsl");

let shader_module = device.device().create_shader_module(wgpu::ShaderModuleDescriptor {
    label: Some("BFS Shader"),
    source: wgpu::ShaderSource::Wgsl(SHADER.into()),
});
```

### Step 2: Create Bind Group Layout (~30 min)

```rust
let bind_group_layout = device.device().create_bind_group_layout(&wgpu::BindGroupLayoutDescriptor {
    label: Some("BFS Bind Group Layout"),
    entries: &[
        // @binding(0): uniform params
        wgpu::BindGroupLayoutEntry {
            binding: 0,
            visibility: wgpu::ShaderStages::COMPUTE,
            ty: wgpu::BindingType::Buffer {
                ty: wgpu::BufferBindingType::Uniform,
                has_dynamic_offset: false,
                min_binding_size: None,
            },
            count: None,
        },
        // @binding(1): storage row_offsets (read)
        wgpu::BindGroupLayoutEntry {
            binding: 1,
            visibility: wgpu::ShaderStages::COMPUTE,
            ty: wgpu::BindingType::Buffer {
                ty: wgpu::BufferBindingType::Storage { read_only: true },
                has_dynamic_offset: false,
                min_binding_size: None,
            },
            count: None,
        },
        // @binding(2): storage col_indices (read)
        // @binding(3): storage distances (read_write, atomic)
        // @binding(4): storage updated (read_write, atomic)
        // ... (similar pattern for remaining bindings)
    ],
});
```

### Step 3: Create Compute Pipeline (~30 min)

```rust
let pipeline_layout = device.device().create_pipeline_layout(&wgpu::PipelineLayoutDescriptor {
    label: Some("BFS Pipeline Layout"),
    bind_group_layouts: &[&bind_group_layout],
    push_constant_ranges: &[],
});

let compute_pipeline = device.device().create_compute_pipeline(&wgpu::ComputePipelineDescriptor {
    label: Some("BFS Pipeline"),
    layout: Some(&pipeline_layout),
    module: &shader_module,
    entry_point: Some("bfs_level"),
    compilation_options: Default::default(),
    cache: None,
});
```

### Step 4: Create Auxiliary Buffers (~45 min)

```rust
// Params buffer (uniform)
#[repr(C)]
#[derive(Copy, Clone, bytemuck::Pod, bytemuck::Zeroable)]
struct BfsParams {
    num_nodes: u32,
    current_level: u32,
    source_node: u32,
    _padding: u32,
}

let params_buffer = device.create_buffer_init(
    "BFS Params",
    bytemuck::bytes_of(&BfsParams {
        num_nodes: buffers.num_nodes() as u32,
        current_level: 0,
        source_node: source.0,
        _padding: 0,
    }),
    wgpu::BufferUsages::UNIFORM | wgpu::BufferUsages::COPY_DST,
)?;

// Distances buffer (storage, atomic<u32>)
let mut initial_distances = vec![u32::MAX; buffers.num_nodes()];
initial_distances[source.0 as usize] = 0;

let distances_buffer = device.create_buffer_init(
    "BFS Distances",
    bytemuck::cast_slice(&initial_distances),
    wgpu::BufferUsages::STORAGE | wgpu::BufferUsages::COPY_SRC,
)?;

// Updated flag buffer (storage, atomic<u32>)
let updated_buffer = device.create_buffer_init(
    "BFS Updated Flag",
    bytemuck::bytes_of(&0u32),
    wgpu::BufferUsages::STORAGE | wgpu::BufferUsages::COPY_DST | wgpu::BufferUsages::COPY_SRC,
)?;
```

### Step 5: Create Bind Group (~15 min)

```rust
let bind_group = device.device().create_bind_group(&wgpu::BindGroupDescriptor {
    label: Some("BFS Bind Group"),
    layout: &bind_group_layout,
    entries: &[
        wgpu::BindGroupEntry {
            binding: 0,
            resource: params_buffer.as_entire_binding(),
        },
        wgpu::BindGroupEntry {
            binding: 1,
            resource: buffers.row_offsets.as_entire_binding(),
        },
        wgpu::BindGroupEntry {
            binding: 2,
            resource: buffers.col_indices.as_entire_binding(),
        },
        wgpu::BindGroupEntry {
            binding: 3,
            resource: distances_buffer.as_entire_binding(),
        },
        wgpu::BindGroupEntry {
            binding: 4,
            resource: updated_buffer.as_entire_binding(),
        },
    ],
});
```

### Step 6: BFS Dispatch Loop (~1 hour)

```rust
let num_nodes = buffers.num_nodes();
let workgroup_size = 256;
let num_workgroups = ((num_nodes as u32 + workgroup_size - 1) / workgroup_size).max(1);

for level in 0..num_nodes {
    // Reset updated flag to 0
    device.queue().write_buffer(&updated_buffer, 0, bytemuck::bytes_of(&0u32));

    // Update params with current level
    device.queue().write_buffer(
        &params_buffer,
        0,
        bytemuck::bytes_of(&BfsParams {
            num_nodes: num_nodes as u32,
            current_level: level as u32,
            source_node: source.0,
            _padding: 0,
        }),
    );

    // Create command encoder
    let mut encoder = device.device().create_command_encoder(&wgpu::CommandEncoderDescriptor {
        label: Some("BFS Command Encoder"),
    });

    {
        let mut compute_pass = encoder.begin_compute_pass(&wgpu::ComputePassDescriptor {
            label: Some("BFS Compute Pass"),
            timestamp_writes: None,
        });

        compute_pass.set_pipeline(&compute_pipeline);
        compute_pass.set_bind_group(0, &bind_group, &[]);
        compute_pass.dispatch_workgroups(num_workgroups, 1, 1);
    }

    // Submit commands
    device.queue().submit(Some(encoder.finish()));

    // Wait for GPU (for debugging - can optimize later)
    device.device().poll(wgpu::Maintain::Wait);

    // Read updated flag
    let updated_value = read_buffer_u32(device, &updated_buffer).await?;

    // If no updates, BFS is complete
    if updated_value == 0 {
        break;
    }
}
```

### Step 7: Read Back Results (~45 min)

```rust
async fn read_buffer_u32(device: &GpuDevice, buffer: &wgpu::Buffer) -> Result<u32> {
    let staging_buffer = device.create_buffer(
        "Staging Buffer",
        4,
        wgpu::BufferUsages::MAP_READ | wgpu::BufferUsages::COPY_DST,
    )?;

    let mut encoder = device.device().create_command_encoder(&Default::default());
    encoder.copy_buffer_to_buffer(buffer, 0, &staging_buffer, 0, 4);
    device.queue().submit(Some(encoder.finish()));

    let buffer_slice = staging_buffer.slice(..);
    let (tx, rx) = futures_intrusive::channel::shared::oneshot_channel();

    buffer_slice.map_async(wgpu::MapMode::Read, move |result| {
        tx.send(result).ok();
    });

    device.device().poll(wgpu::Maintain::Wait);
    rx.receive().await.ok_or_else(|| anyhow::anyhow!("Failed to receive map result"))??;

    let data = buffer_slice.get_mapped_range();
    let value = u32::from_ne_bytes(data[0..4].try_into()?);
    drop(data);
    staging_buffer.unmap();

    Ok(value)
}

// Read distances array
async fn read_distances(device: &GpuDevice, distances_buffer: &wgpu::Buffer, num_nodes: usize) -> Result<Vec<u32>> {
    let size = (num_nodes * std::mem::size_of::<u32>()) as u64;
    let staging_buffer = device.create_buffer(
        "Distances Staging",
        size,
        wgpu::BufferUsages::MAP_READ | wgpu::BufferUsages::COPY_DST,
    )?;

    let mut encoder = device.device().create_command_encoder(&Default::default());
    encoder.copy_buffer_to_buffer(distances_buffer, 0, &staging_buffer, 0, size);
    device.queue().submit(Some(encoder.finish()));

    let buffer_slice = staging_buffer.slice(..);
    let (tx, rx) = futures_intrusive::channel::shared::oneshot_channel();

    buffer_slice.map_async(wgpu::MapMode::Read, move |result| {
        tx.send(result).ok();
    });

    device.device().poll(wgpu::Maintain::Wait);
    rx.receive().await.ok_or_else(|| anyhow::anyhow!("Failed to receive map result"))??;

    let data = buffer_slice.get_mapped_range();
    let distances: Vec<u32> = bytemuck::cast_slice(&data).to_vec();
    drop(data);
    staging_buffer.unmap();

    Ok(distances)
}

// In gpu_bfs function:
let distances = read_distances(device, &distances_buffer, num_nodes).await?;
let visited_count = distances.iter().filter(|&&d| d != u32::MAX).count();

Ok(GpuBfsResult {
    distances,
    visited_count,
})
```

---

## Testing Strategy

1. **Start Simple**: Test with 3-node chain graph (0→1→2)
2. **Verify Correctness**: Compare against CPU BFS results
3. **Test Edge Cases**:
   - Empty graph
   - Disconnected components
   - Self-loops
   - Large graphs (1K, 10K nodes)

4. **Performance Validation**:
   - Run Criterion benchmarks
   - Compare against NetworkX (target: 250× faster)
   - Profile with wgpu validation layer

---

## Common Pitfalls & Solutions

### 1. Atomic Operations
**Issue**: WGSL atomics require specific buffer binding types
**Solution**: Use `wgpu::BufferBindingType::Storage { read_only: false }` for atomic buffers

### 2. Buffer Alignment
**Issue**: Uniform buffers must be aligned to 256 bytes on some GPUs
**Solution**: Use `#[repr(C, align(256))]` for params struct OR pad manually

### 3. Workgroup Size
**Issue**: Workgroup size must match shader declaration
**Solution**: Keep consistent `@workgroup_size(256)` in shader and `dispatch_workgroups()`

### 4. GPU Synchronization
**Issue**: Results may not be ready immediately
**Solution**: Use `device.poll(wgpu::Maintain::Wait)` or async buffer mapping

---

## Performance Expectations

Based on Gunrock (Wang et al., ACM ToPC 2017) and NetworkX benchmarks:

| Graph Size | CPU BFS (NetworkX) | Target GPU BFS | Expected Speedup |
|------------|-------------------|----------------|------------------|
| 1K nodes   | ~1.2 ms          | ~40 μs         | **30×** |
| 5K nodes   | ~6 ms            | ~200 μs        | **30×** |
| 10K nodes  | ~15 ms           | ~500 μs        | **30×** |
| 100K nodes | ~200 ms          | ~5 ms          | **40×** |

**Note**: Initial implementation may be slower due to CPU/GPU transfer overhead. Optimization opportunities:
- Batch multiple BFS operations
- Keep graph on GPU between runs
- Frontier compaction (for very sparse graphs)

---

## References

1. **Gunrock** (Wang et al., ACM ToPC 2017)
   - Frontier-based GPU graph traversal
   - Direction-optimizing BFS
   - Load balancing strategies

2. **wgpu Examples**
   - https://github.com/gfx-rs/wgpu/tree/master/examples
   - compute-shader examples for reference
   - buffer management patterns

3. **GraphBLAST** (Yang et al., ACM ToMS 2022)
   - GPU graph analytics with bidirectional CSR
   - Sparse matrix primitives

---

## Next Steps for Implementation

1. **Create new file**: `src/gpu/bfs_impl.rs` with full integration
2. **Start with Step 1**: Load shader (5 min)
3. **Progress incrementally**: Complete steps 2-7 in order
4. **Test after each step**: Verify compilation and basic functionality
5. **Commit frequently**: After each major milestone

**Estimated Time**: 4 hours for experienced GPU programmer, 6-8 hours for learning

**Current Status**: All infrastructure ready, clear integration path documented ✅