Skip to content
Snippets Groups Projects
Commit b2eca221 authored by auphelia's avatar auphelia
Browse files

[Builder] Add signature parameter to build flow

parent 1490d1e6
No related branches found
No related tags found
No related merge requests found
......@@ -209,6 +209,10 @@ class DataflowBuildConfig:
#: the full list of layer IP build directories. By default, synthesis will not run.
stitched_ip_gen_dcp: Optional[bool] = False
#: (Optional) Insert a signature node to the stitched-IP to read/write information
#: to the design: e.g. Customer signature, application signature, version
signature: Optional[bool] = False
#: (Optional) Control the maximum width of the per-PE MVAU stream while
#: exploring the parallelization attributes to reach target_fps
#: Only relevant if target_fps is specified.
......
......@@ -511,6 +511,7 @@ def step_create_stitched_ip(model: ModelWrapper, cfg: DataflowBuildConfig):
cfg._resolve_fpga_part(),
cfg.synth_clk_period_ns,
vitis=cfg.stitched_ip_gen_dcp,
signature=cfg.signature,
)
)
# TODO copy all ip sources into output dir? as zip?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment