feat(v2): M7 Dataflow Core - full M1-M6 integration, wake-up loop closed end-to-end
dataflow_core.v integrates dependency_manager (M6) -> neural_director (M5) -> N_SLOTS x (memory_manager (M4) + neural_processor (M1)) for the first time. A slot's completion (via neural_director's new slot_node_id tracking, an additive port) feeds back as a producer_done event to dependency_manager, waking up any node that depended on it - closing the dataflow loop without external glue. Verified end-to-end (Verilator) on a 3-node DAG: two independent nodes plus a third depending on both, confirmed to dispatch only after both genuinely complete via real neural_processor computation. 4/4 PASS. Real synthesis + nextpnr-ecp5 P&R via a synthesis-only timing harness (bare per-slot backend ports exceed the LFE5U-45F's TRELLIS_IO budget, same pattern as ERR-0005): N_SLOTS=2 -> 165.15 MHz, N_SLOTS=4 -> 133.19 MHz, both PASS at 80MHz, 0 synthesis problems. Scope explicitly deferred to M8 (DEC-0009): M3's BRAM buffers not wired in yet, per-slot Memory Backend Interface ports not arbitrated to one shared PSRAM master yet - both need real measured data before committing to a design, not guessed at here. Logged: simulation/synthesis/timing/benchmark/decisions (DEC-0009)/ experiments (EXP-0008)/errors (ERR-0007, a Yosys chparam-ordering build quirk, not an RTL bug)/development.log, ROADMAP.md updated. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013xXuuRUWZScuo1DeYJxs3v
This commit is contained in:
@@ -88,3 +88,18 @@ no harness needed)
|
||||
| Module | Fmax (POST-P&R) | LUT | FF | DSP | CCU2C |
|
||||
|----------------------|------------------|-----|-----|-----|-------|
|
||||
| dependency_manager (N_NODES=16) | 155.30 MHz | 763 | 474 | 0 | 0 |
|
||||
|
||||
[2026-09-05] M7 Dataflow Core (full M1-M6 integration; resources via
|
||||
real standalone synthesis, Fmax via timing harness -- see errors.log
|
||||
ERR-0005)
|
||||
|
||||
| Module (config) | Fmax (POST-P&R) | LUT4 | CCU2C | FF | DSP | BRAM |
|
||||
|-------------------------------|------------------|------|-------|------|-----|------|
|
||||
| dataflow_core (N_SLOTS=2) | 165.15 MHz | 2127 | 248 | 2505 | 16 | 0 |
|
||||
| dataflow_core (N_SLOTS=4) | 133.19 MHz | 3953 | 500 | 4688 | 32 | 0 |
|
||||
|
||||
DSP budget on the LFE5U-45F is 72 MULT18X18D total: N_SLOTS=4 already
|
||||
uses 32/72 (44%), consistent with DEC-0005's finding that DSP, not
|
||||
LUT/FF, is the first resource to saturate as concurrency grows (M2's
|
||||
own N_PROCESSORS=8 measurement: 88%). BRAM=0 on both is expected --
|
||||
M3's buffers are not wired into dataflow_core yet (DEC-0009).
|
||||
|
||||
@@ -455,3 +455,69 @@ missing.
|
||||
|
||||
STATUS:
|
||||
ACCEPTED
|
||||
DEC-0009
|
||||
|
||||
DATE: 2026-09-05
|
||||
|
||||
DECISION:
|
||||
dataflow_core.v (M7) integrates dependency_manager (M6) -> neural_director
|
||||
(M5) -> N_SLOTS x (memory_manager (M4) + neural_processor (M1)), closing
|
||||
the wake-up loop end-to-end for the first time. Two things are
|
||||
deliberately NOT done in this module: (1) M3's BRAM-backed buffers
|
||||
(activation_buffer/weight_buffer/result_buffer) are not instantiated
|
||||
anywhere inside it; (2) each slot's byte-level Memory Backend Interface
|
||||
is exposed as its own SEPARATE port (slot_mem_req/wr/addr/wdata/rdata/
|
||||
ready, arrayed by N_SLOTS) rather than arbitrated down to one shared
|
||||
PSRAM master.
|
||||
|
||||
WHY:
|
||||
(1) §15's own diagram places the Memory Manager -> Memory Backend
|
||||
Interface -> PSRAM Controller path on one side, with M3's buffers
|
||||
belonging as an on-chip cache concept, not a mandatory pass-through --
|
||||
each memory_manager instance already owns its own prefetch double
|
||||
buffer (M4) for the fast path it actually needs, and no measured
|
||||
benchmark yet shows a real need for an additional shared cache layer
|
||||
(§22/§30: no invented results/optimizations). (2) real PSRAM has
|
||||
exactly ONE physical port; N_SLOTS>1 memory_manager instances wanting
|
||||
concurrent access is fundamentally an arbitration problem, and building
|
||||
an arbiter now, before M8's real-toolchain measurement of what
|
||||
contention actually looks like end-to-end with the real (unmodified)
|
||||
V1 PSRAM chain, risks designing to a guess instead of to data.
|
||||
|
||||
EVIDENCE:
|
||||
hardware/v2/sim/tb_dataflow_core.v -- 4/4 tests PASS on a 3-node DAG
|
||||
run through the full stack with each slot backed by its own
|
||||
independent behavioral memory (deliberately NOT the real shared V1
|
||||
PSRAM chain, for exactly the reason above): node0 and node1 (no
|
||||
dependencies) both complete correctly via real neural_processor
|
||||
computation, and node2 (depends on BOTH) is only dispatched after
|
||||
BOTH genuinely finish -- continuously polled every cycle, not just
|
||||
checked at the end -- proving the producer_done wake-up loop closes
|
||||
correctly with real M1/M4/M5/M6 hardware in between, not just
|
||||
between M5 and M6 in isolation (already proven separately by their
|
||||
own testbenches).
|
||||
|
||||
ALTERNATIVES:
|
||||
1. Wire a naive round-robin N-port arbiter in front of one shared
|
||||
PSRAM master now. Rejected: M8's own roadmap text is explicit
|
||||
("Integrare il controller V1 senza modificarlo inizialmente.
|
||||
Misurare il comportamento reale.") -- arbitration design should
|
||||
follow a real measurement of contention under the real PSRAM
|
||||
latency model, not be guessed at during M7's own scope (proving
|
||||
the dependency/scheduling loop closes, not memory sharing).
|
||||
2. Instantiate M3's buffers as a shared cache in front of each slot's
|
||||
Memory Backend Interface now. Rejected: no benchmark yet shows
|
||||
PSRAM bandwidth or latency is actually a bottleneck for the
|
||||
dependency-graph workloads this module targets -- premature
|
||||
without measured justification.
|
||||
|
||||
RESULT:
|
||||
dataflow_core.v as implemented: N_SLOTS independent Memory Backend
|
||||
Interface ports, no M3 buffers wired in. Both explicitly deferred to
|
||||
M8 (shared PSRAM integration/arbitration) and a future
|
||||
measurement-driven decision (M3 buffer reuse), not missing by
|
||||
oversight.
|
||||
|
||||
STATUS:
|
||||
ACCEPTED
|
||||
|
||||
|
||||
@@ -181,3 +181,28 @@ decision: vedi decisions.log DEC-0008 (nessun forwarding di valori
|
||||
next_action: M7 -- dataflow_core.v, prima integrazione di
|
||||
Director+Dependency Manager+Memory Manager+Processor Array+Buffer
|
||||
in un unico top-level.
|
||||
|
||||
[2026-09-05] M7 -- hardware/v2/rtl/dataflow_core.v
|
||||
reason: roadmap M7 -- first full integration of dependency_manager
|
||||
(M6) + neural_director (M5) + N_SLOTS x (memory_manager (M4) +
|
||||
neural_processor (M1)) into one top-level module, closing the
|
||||
producer-completion -> dependency-wake-up loop end-to-end for the
|
||||
first time. Additive extension to neural_director.v: added a
|
||||
slot_node_id output port (which node_id occupies each slot) so a
|
||||
caller can map a completed slot back to the node_id that just
|
||||
finished -- re-verified M5's own testbench still passes 4/4
|
||||
unaffected.
|
||||
result: 4/4 test PASS on a 3-node DAG (node2 depends on BOTH node0 and
|
||||
node1; confirmed it does NOT dispatch until both genuinely complete,
|
||||
polled every cycle). Real synthesis: 0 problems at both N_SLOTS=2
|
||||
(LUT4=2127/CCU2C=248/FF=2505/DSP=16) and N_SLOTS=4
|
||||
(LUT4=3953/CCU2C=500/FF=4688/DSP=32). Real Fmax (via
|
||||
harness_dataflow_core.v): 165.15 MHz (N_SLOTS=2), 133.19 MHz
|
||||
(N_SLOTS=4), both PASS at 80MHz.
|
||||
errors: one Yosys build-script usage quirk (errors.log ERR-0007,
|
||||
chparam target ordering), not an RTL bug.
|
||||
decision: see decisions.log DEC-0009 (M3 buffers not wired in yet, no
|
||||
shared-PSRAM arbitration across slots yet -- both deferred to M8).
|
||||
next_action: M8 -- PSRAM integration. Wire the real (unmodified) V1
|
||||
PSRAM backend chain through dataflow_core end-to-end and measure/
|
||||
design whatever N_SLOTS>1 arbitration real contention requires.
|
||||
|
||||
@@ -176,3 +176,30 @@ VERIFICATION: hardware/v2/sim/tb_memory_manager.v -- 3/3 tests PASS
|
||||
signal inspection).
|
||||
STATUS: FIXED, verified end-to-end with the real (unmodified) V1
|
||||
PSRAM backend chain and a real M1 neural_processor.
|
||||
|
||||
ERR-0007 (Yosys usage quirk, WORKED AROUND, not an RTL bug)
|
||||
DATE: 2026-09-05
|
||||
MODULE: hardware/v2/synthesis/harness_dataflow_core.v (build script)
|
||||
SYMPTOM: `chparam -set N_SLOTS 2 dataflow_core` (setting the parameter
|
||||
directly on the NON-top child module, before running `synth_ecp5
|
||||
-top harness_dataflow_core`) synthesizes with no visible error from
|
||||
the chparam/hierarchy commands themselves, but `synth_ecp5` then
|
||||
fails with "Module `\dataflow_core' referenced in module
|
||||
`\harness_dataflow_core' in cell `\dut' is not part of the design" --
|
||||
even though a standalone `hierarchy -top harness_dataflow_core` run
|
||||
(no synth_ecp5) with the exact same chparam succeeds.
|
||||
ROOT CAUSE: harness_dataflow_core.v's own instantiation of
|
||||
dataflow_core explicitly overrides N_SLOTS via its own local
|
||||
parameter (`.N_SLOTS(N_SLOTS)`) -- chparam on the child module's
|
||||
DEFAULT is therefore always shadowed at that instantiation site
|
||||
regardless of its value, and synth_ecp5's own internal re-hierarchy
|
||||
pass (distinct from a standalone `hierarchy` call) does not
|
||||
reconcile a chparam'd-but-never-actually-used child default the
|
||||
same way, dropping the generic module reference instead.
|
||||
WORKAROUND: set the parameter on the TOP module being synthesized
|
||||
instead (`chparam -set N_SLOTS 2 harness_dataflow_core`), letting
|
||||
its own instantiation forward the value down to dataflow_core as
|
||||
designed. Confirmed working for both N_SLOTS=2 and N_SLOTS=4.
|
||||
STATUS: WORKED AROUND. A build-script ordering detail, not a defect in
|
||||
dataflow_core.v or harness_dataflow_core.v themselves -- noted here
|
||||
so a future N_SLOTS sweep (M9/M10) does not re-trip over it.
|
||||
|
||||
@@ -365,3 +365,39 @@ decision: see decisions.log DEC-0008 (no value forwarding yet, no
|
||||
next_action: M7 -- dataflow_core.v, integrating Director + Dependency
|
||||
Manager + Memory Manager + Processor Array + Buffers into one top-
|
||||
level module for the first time.
|
||||
|
||||
[2026-09-05] EXP-0008 -- hardware/v2/rtl/dataflow_core.v (M7, full
|
||||
M1-M6 integration)
|
||||
test: hardware/v2/sim/tb_dataflow_core.v -- a 3-node DAG (node0/node1
|
||||
independent, node2 depends on BOTH) run through the REAL
|
||||
dependency_manager -> neural_director -> N_SLOTS x (memory_manager +
|
||||
neural_processor) chain end-to-end for the first time, each slot
|
||||
backed by its own independent behavioral byte memory (shared real
|
||||
PSRAM arbitration explicitly deferred to M8, decisions.log DEC-0009)
|
||||
simulator: Verilator 5.050 (--binary --timing)
|
||||
PASS/FAIL:
|
||||
SIMULATED: 4/4 PASS -- node0=48, node1=8 (correct real
|
||||
neural_processor computations via the full stack), node2=40
|
||||
dispatched only after BOTH node0 and node1 genuinely completed
|
||||
(continuously polled every cycle, not just checked at the end).
|
||||
SYNTHESIZED (via harness_dataflow_core.v -- see errors.log ERR-0005):
|
||||
N_SLOTS=2: 0 CHECK problems, LUT4=2127, CCU2C=248, TRELLIS_FF=2505,
|
||||
MULT18X18D=16, DP16KD=0.
|
||||
N_SLOTS=4: 0 CHECK problems, LUT4=3953, CCU2C=500, TRELLIS_FF=4688,
|
||||
MULT18X18D=32, DP16KD=0.
|
||||
POST-P&R (real, harness-based): N_SLOTS=2 Fmax=165.15 MHz,
|
||||
N_SLOTS=4 Fmax=133.19 MHz -- both PASS at 80MHz.
|
||||
errors: one Yosys build-script usage quirk (chparam ordering against
|
||||
a non-top module vs synth_ecp5's own internal re-hierarchy pass) --
|
||||
see errors.log ERR-0007. Not an RTL bug; no dataflow_core.v or
|
||||
harness_dataflow_core.v source change needed, only the build command
|
||||
itself.
|
||||
decision: see decisions.log DEC-0009 (no M3 buffers wired in yet, no
|
||||
shared-PSRAM arbitration across slots yet -- both explicitly
|
||||
deferred to M8/a future measurement-driven decision, not missing by
|
||||
oversight).
|
||||
next_action: M8 -- PSRAM integration. Wire the real (unmodified) V1
|
||||
PSRAM backend chain (int8_memory_access -> memory_interface ->
|
||||
psram_controller) end-to-end through dataflow_core, and design/
|
||||
measure whatever N_SLOTS>1 arbitration across ONE physical PSRAM
|
||||
port actually requires.
|
||||
|
||||
@@ -60,3 +60,18 @@ test: 4 cases on a 4-node DAG (2 independent + 1 dual-dependency +
|
||||
1 single-dependency-shared-producer)
|
||||
simulator: Verilator 5.050 (--binary --timing)
|
||||
PASS/FAIL: 4/4 PASS
|
||||
|
||||
[2026-09-05] EXP-0008 -- hardware/v2/sim/tb_dataflow_core.v
|
||||
test: full end-to-end M1-M6 integration through dataflow_core.v (M7),
|
||||
a 3-node DAG (node0/node1 independent, node2 depends on BOTH) run
|
||||
through the REAL dependency_manager -> neural_director -> N_SLOTS x
|
||||
(memory_manager + neural_processor) chain for the first time, each
|
||||
slot backed by its own independent behavioral byte memory
|
||||
simulator: Verilator 5.050 (--binary --timing)
|
||||
PASS/FAIL: 4/4 PASS -- node0=48, node1=8 (both real neural_processor
|
||||
computations via the full stack), node2=40 dispatched only after
|
||||
BOTH node0 and node1 genuinely completed (continuously polled every
|
||||
cycle up to completion, not just checked at the end) -- the
|
||||
dependency-manager-to-director wake-up loop closes correctly
|
||||
end-to-end with real hardware in between, not just in isolation
|
||||
(M6's own testbench already proved the wake-up logic alone)
|
||||
|
||||
@@ -46,3 +46,20 @@ LUT4=382 TRELLIS_FF=366 CCU2C=4 DSP=0. CHECK: 0 problems.
|
||||
|
||||
[2026-09-05] EXP-0007 -- dependency_manager (N_NODES=16, MAX_DEPS=4)
|
||||
LUT4=763 TRELLIS_FF=474 CCU2C=0 DSP=0. CHECK: 0 problems.
|
||||
|
||||
[2026-09-05] EXP-0008 -- dataflow_core (M7 full integration, via
|
||||
harness_dataflow_core.v -- see errors.log ERR-0005 for why a harness
|
||||
is needed: bare per-slot Memory Backend Interface ports alone total
|
||||
280 bits at N_SLOTS=4, exceeding the LFE5U-45F-8BG381's ~245 TRELLIS_IO
|
||||
budget)
|
||||
N_SLOTS=2: LUT4=2127 CCU2C=248 TRELLIS_FF=2505 MULT18X18D=16 DP16KD=0
|
||||
N_SLOTS=4: LUT4=3953 CCU2C=500 TRELLIS_FF=4688 MULT18X18D=32 DP16KD=0
|
||||
CHECK: 0 problems on both configs (same 32 benign "multiple conflicting
|
||||
drivers for ...neural_processor.\gi" warnings per neural_processor
|
||||
instance already documented in EXP-0001 -- an `integer` for-loop
|
||||
index shared across two of neural_processor's own always blocks, not
|
||||
a real multi-driver conflict). DP16KD=0 on both is expected: M3's
|
||||
BRAM-backed buffers (activation/weight/result_buffer) are
|
||||
deliberately NOT instantiated inside dataflow_core yet (decisions.log
|
||||
DEC-0009). DSP scales exactly 8/slot (matches P_IN=8, consistent with
|
||||
every prior per-processor DSP measurement since M1/M2).
|
||||
|
||||
@@ -54,3 +54,14 @@ Fmax: 250.50 MHz -- PASS at 80MHz (real place&route measurement)
|
||||
no harness needed), real nextpnr-ecp5 --45k --package CABGA381
|
||||
--speed 8 --freq 80 --lpf-allow-unconstrained
|
||||
Fmax: 155.30 MHz -- PASS at 80MHz (real place&route measurement)
|
||||
|
||||
[2026-09-05] EXP-0008 -- dataflow_core (via harness_dataflow_core.v,
|
||||
see errors.log ERR-0005 for why a harness was needed), real
|
||||
nextpnr-ecp5 --45k --package CABGA381 --speed 8 --freq 80
|
||||
--lpf-allow-unconstrained
|
||||
N_SLOTS=2: Fmax = 165.15 MHz -- PASS at 80MHz (real place&route)
|
||||
N_SLOTS=4: Fmax = 133.19 MHz -- PASS at 80MHz (real place&route)
|
||||
Fmax drops as N_SLOTS grows (more concurrent memory_manager+
|
||||
neural_processor instances competing for the same routing fabric
|
||||
around the shared neural_director/dependency_manager hub) -- both
|
||||
configs still clear the 80MHz target with real margin.
|
||||
|
||||
Reference in New Issue
Block a user