Files
foxhunt/docs/superpowers
jgrusewski 79b7d3fc8b plan(dqn-v2): Plan 2 revision — GPU-drives architecture + Mamba2 validation scope
Revises Plan 2 to match the post-Plan-1 reality:

1. AdaptiveController → AdaptiveMonitor throughout (read-only observers
   per spec §4.C.6 2026-04-24 revision; GPU kernels compute, CPU reads).
   Applies to Task 3 (per-branch gamma) and Task 5 (liquid_mod audit).

2. Task 2 (D.1 Mamba2 backward) scope narrowed from "implement" to
   "validate existing". Plan 1 A.5 audit confirmed
   mamba2_scan_projected_bwd kernel + mamba2_backward host call are
   already fully wired. Task 2 now adds a finite-difference grad-check
   smoke + non-zero grad-propagation smoke; escalates if either fails.

3. Task 3 (D.2 per-branch gamma) rewritten for GPU-drives compliance:
   - Replace scalar GAMMA_EFF_INDEX=43 with 4 per-branch slots at
     43-46 (DIR/MAG/ORD/URG).
   - New per_branch_gamma_update_kernel.cu reads v-range + health,
     writes 4 slots. Deletes the Plan 1 gamma_update_kernel.cu.
   - 4 read-only monitors (or one consolidated PerBranchGammaMonitor).
   - ISV slots 44-48 shift downstream; fingerprint re-tails at 50-51;
     ISV_TOTAL_DIM grows 49 → 52.
   - c51_loss_kernel and iql_value_kernel read per-branch γ from ISV.
   - No CPU-side γ computation anywhere.

4. Header architecture block updated: new ISV slot count target,
   GPU-drives principle explicit, current Plan-1 layout table inline
   for reference.

5. Pre-plan verification updated: expects AdaptiveMonitor trait (not
   AdaptiveController); checks for 6 Plan-1 monitor files.

6. Removed "schema version bump 1 → 2" language — layout fingerprint
   auto-recomputes from seed bytes; no integer version space exists.

Task 4 (D.5 soft fold transitions), Task 5 content (D.7 liquid audit),
Task 6 (D.3+D.6+D.8 coordinated state-layout migration), Task 7
(validation run) structure preserved. Internal slot numbers in those
tasks will reconcile to the new layout when they land (no pre-emptive
edits since those indices depend on whether Task 1 quantile slots or
Task 3 per-branch gamma slots land first — re-compute at exec time).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-24 19:04:56 +02:00
..