- Multi-Die FPGA Architecture
- Architecture Definition Format
- Customizing the Architecture
- SLL Counts Lookup Table
- Best Practices
OpenPARF supports customization of multi-die FPGA architectures through a structured XML format. This guide explains how to define and modify architectures for your specific needs.
Architecture files are located at benchmarks/arch/ultrascale/multi-die_layout_<{num_cols}x{num_rows}>.xml
. The XML format includes several key sections:
<resources>
: Define available FPGA resources<primitives>
: Specify primitive elements<global_sw>
: Global switch configurations<tile_blocks>
: Define tile block structures<cores>
: Core specifications<chip>
: Overall chip topology and SLR configuration
Here's a sample 2x2
SLR topology:
<chip name="demo_chip">
<grid name="chip_grid" cols="2" rows="2">
<core name="CORE_0" type="CORE_A" x="0" y="0" width="168" height="120"/>
<core name="CORE_1" type="CORE_A" x="0" y="1" width="168" height="120"/>
<core name="CORE_2" type="CORE_B" x="1" y="0" width="168" height="120"/>
<core name="CORE_3" type="CORE_B" x="1" y="1" width="168" height="120"/>
</grid>
</chip>
-
Define SLR Topology
- Modify the
<grid>
attributes in<chip>
section - Set appropriate
cols
androws
values
- Modify the
-
Configure Cores
- Define each core with unique
name
- Specify
type
, position (x
,y
), and dimensions (width
,height
) - Ensure core specifications match SLR requirements
- Define each core with unique
-
Adjust Resources
- Customize
<resources>
,<primitives>
, and other sections as needed - Maintain consistency with core configurations
- Customize
-
Verify Configuration
- Check all specifications for correctness
- Ensure topology matches design requirements
For SLR topologies beyond 1x4
or 2x2
, generate a custom SLL counts lookup table:
python compute_sll_counts_table.py --num_cols <num cols> --num_rows <num rows> --output <filename>
-
Generate Table
- Run script with desired dimensions
- Table will be saved as
<filename>.npy
-
Install Table
- Move generated
.npy
file to<installation directory>/openparf/ops/sll/
- Update code in
sll.py
to use new table:
- Move generated
else:
self.sll_counts_table = torch.from_numpy(
np.load(
os.path.join(
os.path.dirname(os.path.abspath(__file__)),
"<filename>.npy"))).to(dtype=torch.int32)
- Keep dimensions reasonable (typically ≤ 5x5 due to fabrication limits)
- Maintain consistent resource distribution
- Verify all specifications before implementation
- Document custom configurations
- Test thoroughly after modifications