Skip to main content

FEAGI GPU Integration - Corrected Architecture Analysis

Document Type: Technical Architecture Review (CORRECTED)
Date: November 1, 2025
Version: 2.0 (Corrected)
Status: Active


🎯 CRITICAL CORRECTION: Actual FEAGI Architecture

Previous Misconception ❌

My initial analysis assumed:

  • Python orchestration layer (feagi-py)
  • PyO3 bindings needed for Python→Rust GPU calls
  • Complex integration work

###true Architecture ✅

FEAGI 2.0 is FULLY Rust:

  • NO Python in critical path
  • TWO entry points (both pure Rust):
    1. feagi - Full-featured server (REST API + ZMQ + Burst Engine)
    2. feagi-inference-engine - Minimal standalone (ZMQ + Burst Engine only)
  • Configuration via TOML (feagi_configuration.toml)
  • GPU configuration ALREADY EXISTS in TOML

📊 Actual User Workflow

┌──────────────────────────────────────────────────────────────┐
│ Users Launch FEAGI (Pure Rust Binary) │
├──────────────────────────────────────────────────────────────┤
│ Option 1: Full Server │
│ $ ./feagi --config feagi_configuration.toml \ │
│ --genome essential_genome.json │
│ │
│ Option 2: Standalone Inference │
│ $ ./feagi-inference-engine \ │
│ --connectome brain.bin \ │
│ --burst-hz 50 │
└──────────────────────────────────────────────────────────────┘


┌──────────────────────────────────────────────────────────────┐
│ FEAGI Binary (Rust) │
│ - Loads feagi_configuration.toml │
│ - Initializes NPU (RustNPU) │
│ - Burst engine reads GPU config │
│ - Auto-selects CPU or GPU backend │
│ - Runs burst loop │
└──────────────────────────────────────────────────────────────┘


┌──────────────────────────────────────────────────────────────┐
│ Agents Connect (ZMQ) │
│ - Any language (Python, Rust, C++, etc.) │
│ - Sensory input → FEAGI │
│ - Motor output ← FEAGI │
└──────────────────────────────────────────────────────────────┘

Key Points:

  • NO Python orchestration
  • NO Python→Rust bindings needed
  • Rust binary reads TOML directly
  • GPU config already in TOML
  • Pure Rust execution

🔥 MAJOR DISCOVERY: GPU Config Already Exists!

From feagi_configuration.toml (lines 217-248):

# Hybrid CPU/GPU Processing Configuration
[neural.hybrid]
enabled = true # Enable intelligent CPU/GPU hybrid processing
gpu_threshold = 1000000 # Use GPU for workloads ≥ this many synapses
keepalive_enabled = true # Enable GPU keep-alive
keepalive_interval = 30.0 # Keep-alive interval in seconds
auto_tune_threshold = false # Automatically adjust threshold

[resources]
use_gpu = true # enable GPU acceleration if available
gpu_memory_fraction = 0.8 # fraction of GPU memory to use

From feagi-config/src/types.rs (lines 384-405, 545-549):

/// Hybrid CPU/GPU processing configuration
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct HybridConfig {
pub enabled: bool,
pub gpu_threshold: usize,
pub keepalive_enabled: bool,
pub keepalive_interval: f64,
pub auto_tune_threshold: bool,
}

pub struct ResourcesConfig {
pub use_gpu: bool,
pub gpu_memory_fraction: f64,
pub enable_health_check: bool,
}

Status: ✅ Configuration structures ALREADY EXIST and are ALREADY PARSED!


🔍 What's Actually Missing

Current Status:

  1. GPU Backend Implementation: ✅ 70% Complete (WGPU, shaders, FCL optimization)
  2. Configuration System: ✅ 100% Complete (TOML parsing, structs defined)
  3. TOML Config: ✅ 100% Complete (GPU fields already in file)
  4. Integration: ⚠️ UNKNOWN - Need to verify if config is actually used

Critical Question:

Is the GPU config actually being used by the burst engine to select the WGPU backend?

Let me verify the integration:


🔎 Integration Verification Needed

Check 1: Does RustNPU::new() accept GPU config?

From feagi/src/main.rs (line 153-160):

let npu = Arc::new(Mutex::new(RustNPU::new(
config.connectome.neuron_space,
config.connectome.synapse_space,
10, // cortical_area_count
)));

Issue: No GPU config being passed! ❌

Check 2: Does burst engine use config?

From feagi/src/main.rs (line 204-210):

let burst_runner = Arc::new(RwLock::new(BurstLoopRunner::new(
Arc::clone(&npu),
Some(viz_publisher),
burst_timestep,
)));

Issue: No GPU config being passed! ❌

Check 3: Is GPU config being logged?

From feagi/src/main.rs (line 449):

info!(" - GPU enabled: {}", config.resources.use_gpu);

Status: Config is being READ but not USED! ⚠️


✅ What Needs to Be Done (MUCH SIMPLER!)

Phase 1: Wire GPU Config to Burst Engine (1-2 weeks, $8-12K)

Task 1.1: Update RustNPU::new() signature

Current:

pub fn new(
neuron_capacity: usize,
synapse_capacity: usize,
cortical_area_count: usize,
) -> Self

Updated:

pub fn new(
neuron_capacity: usize,
synapse_capacity: usize,
cortical_area_count: usize,
gpu_config: Option<&GpuConfig>, // NEW
) -> Self

Work: 1-2 days


Task 1.2: Create GpuConfig struct in burst engine

// feagi-burst-engine/src/backend/mod.rs

pub struct GpuConfig {
pub enabled: bool,
pub gpu_threshold: usize,
pub use_gpu: bool,
pub gpu_memory_fraction: f64,
}

impl From<(&feagi_config::HybridConfig, &feagi_config::ResourcesConfig)> for GpuConfig {
fn from((hybrid, resources): (&HybridConfig, &ResourcesConfig)) -> Self {
Self {
enabled: hybrid.enabled,
gpu_threshold: hybrid.gpu_threshold,
use_gpu: resources.use_gpu,
gpu_memory_fraction: resources.gpu_memory_fraction,
}
}
}

Work: 1 day


Task 1.3: Update RustNPU to use GPU config

impl RustNPU {
pub fn new(
neuron_capacity: usize,
synapse_capacity: usize,
cortical_area_count: usize,
gpu_config: Option<&GpuConfig>,
) -> Self {
// Determine backend type based on config
let backend_type = if let Some(config) = gpu_config {
if config.use_gpu && config.enabled {
BackendType::Auto // Let auto-selection use gpu_threshold
} else {
BackendType::CPU
}
} else {
BackendType::CPU // No config = CPU
};

// Create backend config
let backend_config = BackendConfig {
gpu_neuron_threshold: gpu_config
.map(|c| c.gpu_threshold)
.unwrap_or(500_000),
force_cpu: gpu_config
.map(|c| !c.use_gpu)
.unwrap_or(false),
..Default::default()
};

// Create backend
let backend = create_backend(
backend_type,
neuron_capacity,
synapse_capacity * 2, // Estimate
&backend_config,
).expect("Failed to create backend");

// ... rest of NPU initialization
}
}

Work: 2-3 days


Task 1.4: Update feagi/src/main.rs to pass config

// feagi/src/main.rs (line 153)

use feagi_burst_engine::GpuConfig;

// Convert TOML config to GPU config
let gpu_config = GpuConfig::from((&config.neural.hybrid, &config.resources));

let npu = Arc::new(Mutex::new(RustNPU::new(
config.connectome.neuron_space,
config.connectome.synapse_space,
10,
Some(&gpu_config), // NEW: Pass GPU config
)));

Work: 1 day


Task 1.5: Testing

  • Test with use_gpu = false → should use CPU
  • Test with use_gpu = true, gpu_threshold = 1000000 → should auto-select based on size
  • Test with small genome → should use CPU
  • Test with large genome (>1M synapses) → should use GPU
  • Verify GPU metrics in logs

Work: 3-4 days

Phase 1 Total: 1-2 weeks, $8-12K


Phase 2: Validation & Benchmarking (6-8 weeks, $50-70K)

SAME as before - no changes needed:

  1. CPU vs GPU correctness validation
  2. Real-world genome benchmarks
  3. Multi-hardware testing (M4 Pro, RTX 4090, Arc)
  4. Calibrate speedup model

Phase 3: Production Hardening (3-4 weeks, $20-30K)

SAME as before - no changes needed:

  1. State synchronization
  2. GPU memory management
  3. Error handling & recovery

Phase 4: Documentation (1 week, $3-5K)

Update user guide:

# GPU Acceleration

FEAGI supports automatic GPU acceleration via WGPU (Metal/Vulkan/DirectX 12).

## Configuration

Edit `feagi_configuration.toml`:

```toml
[neural.hybrid]
enabled = true # Enable GPU auto-selection
gpu_threshold = 1000000 # Use GPU for genomes ≥1M synapses

[resources]
use_gpu = true # Enable GPU globally
gpu_memory_fraction = 0.8 # Use 80% of GPU memory

Verification

Check logs on startup:

✓ Configuration loaded
Resources:
- GPU enabled: true
- GPU threshold: 1000000

🎮 Using WGPU backend (GPU accelerated)
Backend: WGPU (Apple M4 Pro - Metal)
Estimated speedup: 7.2x

Troubleshooting

GPU not detected:

  • Check drivers (Metal on macOS, Vulkan on Linux, DX12 on Windows)
  • Verify wgpu can detect GPU: cargo run --example enumerate_adapters

Performance worse than CPU:

  • Genome too small (<500K neurons)
  • Increase gpu_threshold or set use_gpu = false

---

## 📊 Revised Total Investment

| Phase | Duration | Cost | Status |
|-------|----------|------|--------|
| **Phase 1: Config Wiring** | 1-2 weeks | $8-12K | ⚠️ NEW (simplified) |
| **Phase 2: Validation** | 6-8 weeks | $50-70K | Same as before |
| **Phase 3: Hardening** | 3-4 weeks | $20-30K | Same as before |
| **Phase 4: Documentation** | 1 week | $3-5K | Same as before |
| **TOTAL** | **11-15 weeks** | **$81-117K** | **vs $95-135K before** |

**Savings**: ~$14-18K (12-13% reduction)
**Time Saved**: ~1 week (faster config wiring vs PyO3)

---

## 🎯 Critical Path (Revised)

### Week 1-2: Config Wiring ✅ SIMPLE
- Update NPU initialization to accept GPU config
- Create GpuConfig struct
- Wire config through from TOML → NPU
- Test with different config values
- **Deliverable**: GPU config controls backend selection

### Week 3-10: Validation ✅ UNCHANGED
- CPU vs GPU correctness testing
- Performance benchmarking
- Multi-hardware testing
- **Deliverable**: Proven correct and fast

### Week 11-14: Hardening ✅ UNCHANGED
- State sync, memory management, error handling
- **Deliverable**: Production-ready

### Week 15: Documentation ✅ SIMPLE
- User guide for GPU configuration
- **Deliverable**: Users know how to enable GPU

---

## 🚀 Implementation Priority

### IMMEDIATE (Week 1):

1. **Verify current backend selection** (1 day)
- Add logging to show which backend is selected
- Verify if GPU is ever being used
- Confirm WGPU backend can be created

2. **Create GpuConfig struct** (1 day)
- Define in burst engine
- Add conversion from TOML config

3. **Update RustNPU signature** (1 day)
- Add gpu_config parameter
- Wire to backend selection

### WEEK 2:

4. **Integration testing** (3-4 days)
- Test all config combinations
- Verify auto-selection logic
- Check GPU metrics

5. **Update documentation** (1 day)
- Document GPU config options
- Add troubleshooting guide

---

## ✅ Simplified Checklist

**Configuration** (ALREADY DONE):
- ✅ TOML config file has GPU fields
- ✅ Rust config structs defined
- ✅ Config parser working
- ✅ Config logged on startup

**Integration** (NEEDS WORK):
- ❌ GPU config passed to NPU initialization
- ❌ GPU config controls backend selection
- ❌ GPU metrics logged
- ❌ User can verify GPU is being used

**Validation** (SAME AS BEFORE):
- ⚠️ CPU vs GPU correctness tests
- ⚠️ Performance benchmarks
- ⚠️ Multi-hardware testing

**Production** (SAME AS BEFORE):
- ⚠️ State synchronization
- ⚠️ Memory management
- ⚠️ Error handling

---

## 🎯 Bottom Line (Corrected)

### Previous Assessment (WRONG):

> "Need PyO3 bindings, Python integration, REST API endpoints"
> Cost: $95-135K, 4-5 months

### Corrected Assessment (CORRECT):

> "GPU backend 70% done, config already in TOML, just need to wire config → NPU"
> Cost: **$81-117K, 3-4 months**

**Key Simplifications**:
- ✅ NO Python integration needed (pure Rust)
- ✅ NO REST API endpoints needed (config via TOML)
- ✅ NO PyO3 bindings needed (no Python)
- ✅ Config system ALREADY DONE (just wire it up)

**Remaining Work**:
1. Wire GPU config from TOML → NPU (1-2 weeks)
2. Validation & testing (6-8 weeks)
3. Production hardening (3-4 weeks)
4. Documentation (1 week)

**Total**: 11-15 weeks, $81-117K

---

## 📝 Action Items

### For Engineering Team:

**IMMEDIATE** (This Week):
1. Add debug logging to show which backend is selected on NPU init
2. Test if WGPU backend can be created manually
3. Verify GPU is detected on target hardware (M4 Pro, RTX 4090)

**WEEK 1-2**:
4. Create `GpuConfig` struct in burst engine
5. Update `RustNPU::new()` to accept `gpu_config` parameter
6. Wire config from `feagi/src/main.rs` through to NPU
7. Test all config combinations

**WEEK 3+**:
8. Begin validation phase (CPU vs GPU correctness)
9. Performance benchmarking
10. Production hardening

---

## 🎉 Summary

**Good News**: GPU integration is **even simpler** than initially thought!

- Architecture is **pure Rust** (no Python complexity)
- Configuration **already exists** in TOML
- Config **already parsed** and logged
- Just needs **wiring** from config → NPU → backend selection

**Estimated Effort**: 11-15 weeks, $81-117K (vs 16-20 weeks, $95-135K before)

**Critical Finding**: The hard work is **already done** (GPU backend, shaders, config). Just need to **connect the pieces**.

---

**Next Steps**:
1. Review this corrected analysis
2. Verify current backend selection behavior
3. Begin Phase 1 (config wiring)
4. Proceed to validation

**Contact**: FEAGI Architecture Team
**Last Updated**: November 1, 2025