Skip to content

Commit

Permalink
Update partial bitstream documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Ruiz committed Nov 17, 2021
1 parent e574c0b commit b84298e
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions pynq_composable/composable.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,21 +144,22 @@ def __init__(self, description):
to be next to bitstream file that was used to create the Overlay object
The name convention for partial bitstreams and HWH file is
<bitstream_name>_<pr_region>_<pr_module_name>.{bit|hwh}
<bitstream_name>_<hierarchy>_<pr_region>_<pr_module_name>.{bit|hwh}
For instance if the main bitstream is `base.bit` and there are two DFX
regions with the names `pr_0` and `pr_1` each of them with the same
two reconfigurable module, `function_1` and `function_2` the names
should be as follow
base_pr_0_function_1.bit
base_pr_0_function_1.hwh
base_pr_0_function_2.bit
base_pr_0_function_2.hwh
base_pr_1_function_1.bit
base_pr_1_function_1.hwh
base_pr_1_function_2.bit
base_pr_1_function_2.hwh
base_composable_pr_0_function_1.bit
base_composable_pr_0_function_1.hwh
base_composable_pr_0_function_2.bit
base_composable_pr_0_function_2.hwh
base_composable_pr_1_function_1.bit
base_composable_pr_1_function_1.hwh
base_composable_pr_1_function_2.bit
base_composable_pr_1_function_2.hwh
"""

super().__init__(description)
Expand Down

0 comments on commit b84298e

Please sign in to comment.