Modify the AXI interface of FINN Stitched IP #522
-
Hi FINN developers, I want to integrate FINN Stitched IP with my Vivado design. However, I found out that the FINN IP's AXI-Stream interface doesn't expose the Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @laochonlam, exposing This must be done after the FIFO depths have been set. A bit of a convoluted example of this use-case can be found here: https://github.com/fastmachinelearning/finn-examples/blob/e36659647cc799dd44c7bd12b8be20df487fe55c/build/kws-pynqz-axidma/build.py#L51 However, as far as I know FINN does not implement the Cheers, |
Beta Was this translation helpful? Give feedback.
Hi @laochonlam,
exposing
tlast
is indeed possible using theInsertTLastMarker
transformation:finn/src/finn/transformation/fpgadataflow/insert_tlastmarker.py
Line 38 in d1cc9cf
This must be done after the FIFO depths have been set. A bit of a convoluted example of this use-case can be found here: https://github.com/fastmachinelearning/finn-examples/blob/e36659647cc799dd44c7bd12b8be20df487fe55c/build/kws-pynqz-axidma/build.py#L51
However, as far as I know FINN does not implement the
tkeep
interface.Cheers,
Hendrik