2. Pre-Defined Flows#
The following are examples are pre-built flows that come with SiliconCompiler which you can use for your own builds.
See the pre-built targets for examples on how these are used in conjunction with pdks, tools and libraries.
2.1. ASIC Flows#
Complete ASIC compilation flows that take RTL through synthesis, place-and-route,
and finishing. The language argument selects the front-end used to bring the
design into Verilog before the shared place-and-route back-end runs; a variant is
shown below for each supported source language.
2.1.1. asicflow-verilog / 0#
A configurable ASIC compilation flow.
This flow targets ASIC designs, taking RTL through a complete synthesis, place-and-route, and finishing flow.
The flow is divided into the following major steps:
elaborate: RTL elaboration using Slang.
synthesis: RTL synthesis using Yosys.
floorplan: Floorplanning, including macro placement, tapcell/endcap insertion, power grid generation, and pin placement.
place: Global and detailed placement.
cts: Clock tree synthesis and post-CTS timing repair.
route: Global and detailed routing.
dfm: Design-for-manufacturing steps, primarily metal fill.
write: Writing out final views of the design (GDSII, etc.).
The synthesis, floorplan, place, cts, and route steps support parallel
execution to explore different strategies. This can be configured by
setting the corresponding *_np argument to a value greater than 1.
- Args:
name (str, optional): The name of the flow. If not provided, it defaults to ‘asicflow-<language>’.
language (str): The hardware description language of the design. One of ‘verilog’, ‘systemverilog’, ‘systemverilog-sv2v’, ‘chisel’, ‘vhdl’, or ‘hls’.
syn_np (int): Number of parallel synthesis jobs to launch.
floorplan_np (int): Number of parallel floorplan jobs to launch.
place_np (int): Number of parallel placement jobs to launch.
cts_np (int): Number of parallel clock tree synthesis jobs to launch.
route_np (int): Number of parallel routing jobs to launch.
File: asicflow.py
2.1.1.1. Graph#
2.1.1.2. Nodes#
2.1.1.2.1. elaborate/0#
Keypath |
Type |
Value |
str |
elaborate |
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
|
str |
slang |
2.1.1.2.2. synthesis/0#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('elaborate', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.1.2.3. synthesis/1#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('elaborate', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.1.2.4. synthesis/2#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('elaborate', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.1.2.5. synthesis.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.1.2.6. cleanup.clean/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis.min', '0') |
|
str |
cleanup_synth |
|
str |
siliconcompiler.tools.openroad.synth_cleanup/CleanupSynthTask |
|
str |
openroad |
2.1.1.2.7. synthesis.timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis.min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.1.1.2.8. floorplan.init/0#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.1.2.9. floorplan.init/1#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.1.2.10. floorplan.init/2#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.1.2.11. floorplan.macro_placement/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.init', '0') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.1.2.12. floorplan.macro_placement/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.init', '1') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.1.2.13. floorplan.macro_placement/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.init', '2') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.1.2.14. floorplan.tapcell/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '0') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.1.2.15. floorplan.tapcell/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '1') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.1.2.16. floorplan.tapcell/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '2') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.1.2.17. floorplan.power_grid/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '0') |
|
str |
power_grid |
|
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
str |
openroad |
2.1.1.2.18. floorplan.power_grid/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '1') |
|
str |
power_grid |
|
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
str |
openroad |
2.1.1.2.19. floorplan.power_grid/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '2') |
|
str |
power_grid |
|
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
str |
openroad |
2.1.1.2.20. floorplan.pin_placement/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.power_grid', '0') |
str |
pin_placement |
|
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
str |
openroad |
2.1.1.2.21. floorplan.pin_placement/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.power_grid', '1') |
str |
pin_placement |
|
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
str |
openroad |
2.1.1.2.22. floorplan.pin_placement/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.power_grid', '2') |
str |
pin_placement |
|
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
str |
openroad |
2.1.1.2.23. floorplan.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.1.2.24. place.global/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.1.2.25. place.global/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.1.2.26. place.global/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.1.2.27. place.repair_design/0#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '0') |
|
str |
repair_design |
|
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
str |
openroad |
2.1.1.2.28. place.repair_design/1#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '1') |
|
str |
repair_design |
|
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
str |
openroad |
2.1.1.2.29. place.repair_design/2#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '2') |
|
str |
repair_design |
|
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
str |
openroad |
2.1.1.2.30. place.detailed/0#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '0') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.1.2.31. place.detailed/1#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '1') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.1.2.32. place.detailed/2#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '2') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.1.2.33. place.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.1.2.34. cts.clock_tree_synthesis/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
|
str |
openroad |
2.1.1.2.35. cts.clock_tree_synthesis/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
|
str |
openroad |
2.1.1.2.36. cts.clock_tree_synthesis/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
|
str |
openroad |
2.1.1.2.37. cts.repair_timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '0') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.1.2.38. cts.repair_timing/1#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '1') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.1.2.39. cts.repair_timing/2#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '2') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.1.2.40. cts.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.1.2.41. cts.fillcell/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.min', '0') |
|
str |
fillercell_insertion |
|
str |
siliconcompiler.tools.openroad.fillercell_insertion/FillCellTask |
|
str |
openroad |
2.1.1.2.42. route.global/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.1.2.43. route.global/1#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.1.2.44. route.global/2#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.1.2.45. route.antenna_repair/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '0') |
|
str |
antenna_repair |
|
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
str |
openroad |
2.1.1.2.46. route.antenna_repair/1#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '1') |
|
str |
antenna_repair |
|
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
str |
openroad |
2.1.1.2.47. route.antenna_repair/2#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '2') |
|
str |
antenna_repair |
|
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
str |
openroad |
2.1.1.2.48. route.detailed/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '0') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.1.2.49. route.detailed/1#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '1') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.1.2.50. route.detailed/2#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '2') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.1.2.51. route.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.1.2.52. dfm.metal_fill/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.min', '0') |
|
str |
fillmetal_insertion |
|
str |
siliconcompiler.tools.openroad.fillmetal_insertion/FillMetalTask |
|
str |
openroad |
2.1.1.2.53. write.gds/0#
Keypath |
Type |
Value |
[(str,str)] |
('dfm.metal_fill', '0') |
|
str |
export |
|
str |
siliconcompiler.tools.klayout.export/ExportTask |
|
str |
klayout |
2.1.1.2.54. write.views/0#
Keypath |
Type |
Value |
[(str,str)] |
('dfm.metal_fill', '0') |
|
str |
write_data |
|
str |
siliconcompiler.tools.openroad.write_data/WriteViewsTask |
|
str |
openroad |
2.1.2. asicflow-systemverilog-sv2v / 1#
A configurable ASIC compilation flow.
This flow targets ASIC designs, taking RTL through a complete synthesis, place-and-route, and finishing flow.
The flow is divided into the following major steps:
elaborate: RTL elaboration using Slang.
synthesis: RTL synthesis using Yosys.
floorplan: Floorplanning, including macro placement, tapcell/endcap insertion, power grid generation, and pin placement.
place: Global and detailed placement.
cts: Clock tree synthesis and post-CTS timing repair.
route: Global and detailed routing.
dfm: Design-for-manufacturing steps, primarily metal fill.
write: Writing out final views of the design (GDSII, etc.).
The synthesis, floorplan, place, cts, and route steps support parallel
execution to explore different strategies. This can be configured by
setting the corresponding *_np argument to a value greater than 1.
- Args:
name (str, optional): The name of the flow. If not provided, it defaults to ‘asicflow-<language>’.
language (str): The hardware description language of the design. One of ‘verilog’, ‘systemverilog’, ‘systemverilog-sv2v’, ‘chisel’, ‘vhdl’, or ‘hls’.
syn_np (int): Number of parallel synthesis jobs to launch.
floorplan_np (int): Number of parallel floorplan jobs to launch.
place_np (int): Number of parallel placement jobs to launch.
cts_np (int): Number of parallel clock tree synthesis jobs to launch.
route_np (int): Number of parallel routing jobs to launch.
File: asicflow.py
2.1.2.1. Graph#
2.1.2.2. Nodes#
2.1.2.2.1. elaborate/0#
Keypath |
Type |
Value |
str |
elaborate |
|
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
str |
slang |
2.1.2.2.2. convert/0#
Keypath |
Type |
Value |
[(str,str)] |
('elaborate', '0') |
|
str |
convert |
|
|
str |
siliconcompiler.tools.sv2v.convert/ConvertTask |
str |
sv2v |
2.1.2.2.3. synthesis/0#
Keypath |
Type |
Value |
|
float |
0.0 |
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
str |
yosys |
2.1.2.2.4. synthesis/1#
Keypath |
Type |
Value |
|
float |
0.0 |
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
str |
yosys |
2.1.2.2.5. synthesis/2#
Keypath |
Type |
Value |
|
float |
0.0 |
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
str |
yosys |
2.1.2.2.6. synthesis.min/0#
Keypath |
Type |
Value |
|
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.2.2.7. cleanup.clean/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('synthesis.min', '0') |
|
str |
cleanup_synth |
|
str |
siliconcompiler.tools.openroad.synth_cleanup/CleanupSynthTask |
|
str |
openroad |
2.1.2.2.8. synthesis.timing/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('synthesis.min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.1.2.2.9. floorplan.init/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.2.2.10. floorplan.init/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.2.2.11. floorplan.init/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.2.2.12. floorplan.macro_placement/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.init', '0') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.2.2.13. floorplan.macro_placement/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.init', '1') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.2.2.14. floorplan.macro_placement/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.init', '2') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.2.2.15. floorplan.tapcell/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.macro_placement', '0') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.2.2.16. floorplan.tapcell/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.macro_placement', '1') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.2.2.17. floorplan.tapcell/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.macro_placement', '2') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.2.2.18. floorplan.power_grid/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.tapcell', '0') |
|
str |
power_grid |
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
|
str |
openroad |
2.1.2.2.19. floorplan.power_grid/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.tapcell', '1') |
|
str |
power_grid |
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
|
str |
openroad |
2.1.2.2.20. floorplan.power_grid/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.tapcell', '2') |
|
str |
power_grid |
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
|
str |
openroad |
2.1.2.2.21. floorplan.pin_placement/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.power_grid', '0') |
|
str |
pin_placement |
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
|
str |
openroad |
2.1.2.2.22. floorplan.pin_placement/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.power_grid', '1') |
|
str |
pin_placement |
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
|
str |
openroad |
2.1.2.2.23. floorplan.pin_placement/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.power_grid', '2') |
|
str |
pin_placement |
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
|
str |
openroad |
2.1.2.2.24. floorplan.min/0#
Keypath |
Type |
Value |
|
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.2.2.25. place.global/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.min', '0') |
str |
global_placement |
|
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
str |
openroad |
2.1.2.2.26. place.global/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.min', '0') |
str |
global_placement |
|
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
str |
openroad |
2.1.2.2.27. place.global/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.min', '0') |
str |
global_placement |
|
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
str |
openroad |
2.1.2.2.28. place.repair_design/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.global', '0') |
|
str |
repair_design |
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
|
str |
openroad |
2.1.2.2.29. place.repair_design/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.global', '1') |
|
str |
repair_design |
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
|
str |
openroad |
2.1.2.2.30. place.repair_design/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.global', '2') |
|
str |
repair_design |
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
|
str |
openroad |
2.1.2.2.31. place.detailed/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.repair_design', '0') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.2.2.32. place.detailed/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.repair_design', '1') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.2.2.33. place.detailed/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.repair_design', '2') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.2.2.34. place.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
str |
builtin |
2.1.2.2.35. cts.clock_tree_synthesis/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
|
str |
openroad |
2.1.2.2.36. cts.clock_tree_synthesis/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
|
str |
openroad |
2.1.2.2.37. cts.clock_tree_synthesis/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
|
str |
openroad |
2.1.2.2.38. cts.repair_timing/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('cts.clock_tree_synthesis', '0') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.2.2.39. cts.repair_timing/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('cts.clock_tree_synthesis', '1') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.2.2.40. cts.repair_timing/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('cts.clock_tree_synthesis', '2') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.2.2.41. cts.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
str |
builtin |
2.1.2.2.42. cts.fillcell/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('cts.min', '0') |
str |
fillercell_insertion |
|
|
str |
siliconcompiler.tools.openroad.fillercell_insertion/FillCellTask |
str |
openroad |
2.1.2.2.43. route.global/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('cts.fillcell', '0') |
str |
global_route |
|
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
str |
openroad |
2.1.2.2.44. route.global/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('cts.fillcell', '0') |
str |
global_route |
|
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
str |
openroad |
2.1.2.2.45. route.global/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('cts.fillcell', '0') |
str |
global_route |
|
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
str |
openroad |
2.1.2.2.46. route.antenna_repair/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('route.global', '0') |
|
str |
antenna_repair |
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
|
str |
openroad |
2.1.2.2.47. route.antenna_repair/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('route.global', '1') |
|
str |
antenna_repair |
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
|
str |
openroad |
2.1.2.2.48. route.antenna_repair/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('route.global', '2') |
|
str |
antenna_repair |
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
|
str |
openroad |
2.1.2.2.49. route.detailed/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('route.antenna_repair', '0') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.2.2.50. route.detailed/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('route.antenna_repair', '1') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.2.2.51. route.detailed/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('route.antenna_repair', '2') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.2.2.52. route.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
str |
builtin |
2.1.2.2.53. dfm.metal_fill/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('route.min', '0') |
|
str |
fillmetal_insertion |
|
str |
siliconcompiler.tools.openroad.fillmetal_insertion/FillMetalTask |
|
str |
openroad |
2.1.2.2.54. write.gds/0#
Keypath |
Type |
Value |
[(str,str)] |
('dfm.metal_fill', '0') |
|
str |
export |
|
|
str |
siliconcompiler.tools.klayout.export/ExportTask |
str |
klayout |
2.1.2.2.55. write.views/0#
Keypath |
Type |
Value |
[(str,str)] |
('dfm.metal_fill', '0') |
|
str |
write_data |
|
|
str |
siliconcompiler.tools.openroad.write_data/WriteViewsTask |
str |
openroad |
2.1.3. asicflow-chisel / 2#
A configurable ASIC compilation flow.
This flow targets ASIC designs, taking RTL through a complete synthesis, place-and-route, and finishing flow.
The flow is divided into the following major steps:
elaborate: RTL elaboration using Slang.
synthesis: RTL synthesis using Yosys.
floorplan: Floorplanning, including macro placement, tapcell/endcap insertion, power grid generation, and pin placement.
place: Global and detailed placement.
cts: Clock tree synthesis and post-CTS timing repair.
route: Global and detailed routing.
dfm: Design-for-manufacturing steps, primarily metal fill.
write: Writing out final views of the design (GDSII, etc.).
The synthesis, floorplan, place, cts, and route steps support parallel
execution to explore different strategies. This can be configured by
setting the corresponding *_np argument to a value greater than 1.
- Args:
name (str, optional): The name of the flow. If not provided, it defaults to ‘asicflow-<language>’.
language (str): The hardware description language of the design. One of ‘verilog’, ‘systemverilog’, ‘systemverilog-sv2v’, ‘chisel’, ‘vhdl’, or ‘hls’.
syn_np (int): Number of parallel synthesis jobs to launch.
floorplan_np (int): Number of parallel floorplan jobs to launch.
place_np (int): Number of parallel placement jobs to launch.
cts_np (int): Number of parallel clock tree synthesis jobs to launch.
route_np (int): Number of parallel routing jobs to launch.
File: asicflow.py
2.1.3.1. Graph#
2.1.3.2. Nodes#
2.1.3.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.chisel.convert/ConvertTask |
|
str |
chisel |
2.1.3.2.2. synthesis/0#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.3.2.3. synthesis/1#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.3.2.4. synthesis/2#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.3.2.5. synthesis.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.3.2.6. cleanup.clean/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis.min', '0') |
|
str |
cleanup_synth |
|
str |
siliconcompiler.tools.openroad.synth_cleanup/CleanupSynthTask |
|
str |
openroad |
2.1.3.2.7. synthesis.timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis.min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.1.3.2.8. floorplan.init/0#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.3.2.9. floorplan.init/1#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.3.2.10. floorplan.init/2#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.3.2.11. floorplan.macro_placement/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.init', '0') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.3.2.12. floorplan.macro_placement/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.init', '1') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.3.2.13. floorplan.macro_placement/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.init', '2') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.3.2.14. floorplan.tapcell/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '0') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.3.2.15. floorplan.tapcell/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '1') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.3.2.16. floorplan.tapcell/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '2') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.3.2.17. floorplan.power_grid/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '0') |
|
str |
power_grid |
|
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
str |
openroad |
2.1.3.2.18. floorplan.power_grid/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '1') |
|
str |
power_grid |
|
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
str |
openroad |
2.1.3.2.19. floorplan.power_grid/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '2') |
|
str |
power_grid |
|
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
str |
openroad |
2.1.3.2.20. floorplan.pin_placement/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.power_grid', '0') |
|
str |
pin_placement |
|
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
str |
openroad |
2.1.3.2.21. floorplan.pin_placement/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.power_grid', '1') |
|
str |
pin_placement |
|
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
str |
openroad |
2.1.3.2.22. floorplan.pin_placement/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.power_grid', '2') |
|
str |
pin_placement |
|
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
str |
openroad |
2.1.3.2.23. floorplan.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.3.2.24. place.global/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.3.2.25. place.global/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.3.2.26. place.global/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.3.2.27. place.repair_design/0#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '0') |
|
str |
repair_design |
|
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
str |
openroad |
2.1.3.2.28. place.repair_design/1#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '1') |
|
str |
repair_design |
|
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
str |
openroad |
2.1.3.2.29. place.repair_design/2#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '2') |
|
str |
repair_design |
|
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
str |
openroad |
2.1.3.2.30. place.detailed/0#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '0') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.3.2.31. place.detailed/1#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '1') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.3.2.32. place.detailed/2#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '2') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.3.2.33. place.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.3.2.34. cts.clock_tree_synthesis/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.min', '0') |
str |
clock_tree_synthesis |
|
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
str |
openroad |
2.1.3.2.35. cts.clock_tree_synthesis/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.min', '0') |
str |
clock_tree_synthesis |
|
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
str |
openroad |
2.1.3.2.36. cts.clock_tree_synthesis/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.min', '0') |
str |
clock_tree_synthesis |
|
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
str |
openroad |
2.1.3.2.37. cts.repair_timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '0') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.3.2.38. cts.repair_timing/1#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '1') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.3.2.39. cts.repair_timing/2#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '2') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.3.2.40. cts.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.3.2.41. cts.fillcell/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.min', '0') |
|
str |
fillercell_insertion |
|
str |
siliconcompiler.tools.openroad.fillercell_insertion/FillCellTask |
|
str |
openroad |
2.1.3.2.42. route.global/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.3.2.43. route.global/1#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.3.2.44. route.global/2#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.3.2.45. route.antenna_repair/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '0') |
|
str |
antenna_repair |
|
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
str |
openroad |
2.1.3.2.46. route.antenna_repair/1#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '1') |
|
str |
antenna_repair |
|
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
str |
openroad |
2.1.3.2.47. route.antenna_repair/2#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '2') |
|
str |
antenna_repair |
|
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
str |
openroad |
2.1.3.2.48. route.detailed/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '0') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.3.2.49. route.detailed/1#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '1') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.3.2.50. route.detailed/2#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '2') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.3.2.51. route.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.3.2.52. dfm.metal_fill/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.min', '0') |
|
str |
fillmetal_insertion |
|
str |
siliconcompiler.tools.openroad.fillmetal_insertion/FillMetalTask |
|
str |
openroad |
2.1.3.2.53. write.gds/0#
Keypath |
Type |
Value |
[(str,str)] |
('dfm.metal_fill', '0') |
|
str |
export |
|
str |
siliconcompiler.tools.klayout.export/ExportTask |
|
str |
klayout |
2.1.3.2.54. write.views/0#
Keypath |
Type |
Value |
[(str,str)] |
('dfm.metal_fill', '0') |
|
str |
write_data |
|
str |
siliconcompiler.tools.openroad.write_data/WriteViewsTask |
|
str |
openroad |
2.1.4. asicflow-vhdl / 3#
A configurable ASIC compilation flow.
This flow targets ASIC designs, taking RTL through a complete synthesis, place-and-route, and finishing flow.
The flow is divided into the following major steps:
elaborate: RTL elaboration using Slang.
synthesis: RTL synthesis using Yosys.
floorplan: Floorplanning, including macro placement, tapcell/endcap insertion, power grid generation, and pin placement.
place: Global and detailed placement.
cts: Clock tree synthesis and post-CTS timing repair.
route: Global and detailed routing.
dfm: Design-for-manufacturing steps, primarily metal fill.
write: Writing out final views of the design (GDSII, etc.).
The synthesis, floorplan, place, cts, and route steps support parallel
execution to explore different strategies. This can be configured by
setting the corresponding *_np argument to a value greater than 1.
- Args:
name (str, optional): The name of the flow. If not provided, it defaults to ‘asicflow-<language>’.
language (str): The hardware description language of the design. One of ‘verilog’, ‘systemverilog’, ‘systemverilog-sv2v’, ‘chisel’, ‘vhdl’, or ‘hls’.
syn_np (int): Number of parallel synthesis jobs to launch.
floorplan_np (int): Number of parallel floorplan jobs to launch.
place_np (int): Number of parallel placement jobs to launch.
cts_np (int): Number of parallel clock tree synthesis jobs to launch.
route_np (int): Number of parallel routing jobs to launch.
File: asicflow.py
2.1.4.1. Graph#
2.1.4.2. Nodes#
2.1.4.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.ghdl.convert/ConvertTask |
|
str |
ghdl |
2.1.4.2.2. synthesis/0#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.4.2.3. synthesis/1#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.4.2.4. synthesis/2#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.4.2.5. synthesis.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.4.2.6. cleanup.clean/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis.min', '0') |
|
str |
cleanup_synth |
|
str |
siliconcompiler.tools.openroad.synth_cleanup/CleanupSynthTask |
|
str |
openroad |
2.1.4.2.7. synthesis.timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis.min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.1.4.2.8. floorplan.init/0#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.4.2.9. floorplan.init/1#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.4.2.10. floorplan.init/2#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.4.2.11. floorplan.macro_placement/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.init', '0') |
|
str |
macro_placement |
|
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
str |
openroad |
2.1.4.2.12. floorplan.macro_placement/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.init', '1') |
|
str |
macro_placement |
|
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
str |
openroad |
2.1.4.2.13. floorplan.macro_placement/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.init', '2') |
|
str |
macro_placement |
|
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
str |
openroad |
2.1.4.2.14. floorplan.tapcell/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '0') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.4.2.15. floorplan.tapcell/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '1') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.4.2.16. floorplan.tapcell/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '2') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.4.2.17. floorplan.power_grid/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '0') |
|
str |
power_grid |
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
|
str |
openroad |
2.1.4.2.18. floorplan.power_grid/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '1') |
|
str |
power_grid |
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
|
str |
openroad |
2.1.4.2.19. floorplan.power_grid/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '2') |
|
str |
power_grid |
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
|
str |
openroad |
2.1.4.2.20. floorplan.pin_placement/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.power_grid', '0') |
|
str |
pin_placement |
|
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
str |
openroad |
2.1.4.2.21. floorplan.pin_placement/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.power_grid', '1') |
|
str |
pin_placement |
|
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
str |
openroad |
2.1.4.2.22. floorplan.pin_placement/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.power_grid', '2') |
|
str |
pin_placement |
|
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
str |
openroad |
2.1.4.2.23. floorplan.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.4.2.24. place.global/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.4.2.25. place.global/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.4.2.26. place.global/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.4.2.27. place.repair_design/0#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '0') |
|
str |
repair_design |
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
|
str |
openroad |
2.1.4.2.28. place.repair_design/1#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '1') |
|
str |
repair_design |
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
|
str |
openroad |
2.1.4.2.29. place.repair_design/2#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '2') |
|
str |
repair_design |
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
|
str |
openroad |
2.1.4.2.30. place.detailed/0#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '0') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.4.2.31. place.detailed/1#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '1') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.4.2.32. place.detailed/2#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '2') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.4.2.33. place.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.4.2.34. cts.clock_tree_synthesis/0#
Keypath |
Type |
Value |
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
str |
openroad |
2.1.4.2.35. cts.clock_tree_synthesis/1#
Keypath |
Type |
Value |
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
str |
openroad |
2.1.4.2.36. cts.clock_tree_synthesis/2#
Keypath |
Type |
Value |
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
str |
openroad |
2.1.4.2.37. cts.repair_timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '0') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.4.2.38. cts.repair_timing/1#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '1') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.4.2.39. cts.repair_timing/2#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '2') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.4.2.40. cts.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.4.2.41. cts.fillcell/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.min', '0') |
|
str |
fillercell_insertion |
|
str |
siliconcompiler.tools.openroad.fillercell_insertion/FillCellTask |
|
str |
openroad |
2.1.4.2.42. route.global/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.4.2.43. route.global/1#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.4.2.44. route.global/2#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.4.2.45. route.antenna_repair/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '0') |
|
str |
antenna_repair |
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
|
str |
openroad |
2.1.4.2.46. route.antenna_repair/1#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '1') |
|
str |
antenna_repair |
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
|
str |
openroad |
2.1.4.2.47. route.antenna_repair/2#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '2') |
|
str |
antenna_repair |
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
|
str |
openroad |
2.1.4.2.48. route.detailed/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '0') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.4.2.49. route.detailed/1#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '1') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.4.2.50. route.detailed/2#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '2') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.4.2.51. route.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.4.2.52. dfm.metal_fill/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.min', '0') |
|
str |
fillmetal_insertion |
|
str |
siliconcompiler.tools.openroad.fillmetal_insertion/FillMetalTask |
|
str |
openroad |
2.1.4.2.53. write.gds/0#
Keypath |
Type |
Value |
[(str,str)] |
('dfm.metal_fill', '0') |
|
str |
export |
|
str |
siliconcompiler.tools.klayout.export/ExportTask |
|
str |
klayout |
2.1.4.2.54. write.views/0#
Keypath |
Type |
Value |
[(str,str)] |
('dfm.metal_fill', '0') |
|
str |
write_data |
|
str |
siliconcompiler.tools.openroad.write_data/WriteViewsTask |
|
str |
openroad |
2.1.5. asicflow-hls / 4#
A configurable ASIC compilation flow.
This flow targets ASIC designs, taking RTL through a complete synthesis, place-and-route, and finishing flow.
The flow is divided into the following major steps:
elaborate: RTL elaboration using Slang.
synthesis: RTL synthesis using Yosys.
floorplan: Floorplanning, including macro placement, tapcell/endcap insertion, power grid generation, and pin placement.
place: Global and detailed placement.
cts: Clock tree synthesis and post-CTS timing repair.
route: Global and detailed routing.
dfm: Design-for-manufacturing steps, primarily metal fill.
write: Writing out final views of the design (GDSII, etc.).
The synthesis, floorplan, place, cts, and route steps support parallel
execution to explore different strategies. This can be configured by
setting the corresponding *_np argument to a value greater than 1.
- Args:
name (str, optional): The name of the flow. If not provided, it defaults to ‘asicflow-<language>’.
language (str): The hardware description language of the design. One of ‘verilog’, ‘systemverilog’, ‘systemverilog-sv2v’, ‘chisel’, ‘vhdl’, or ‘hls’.
syn_np (int): Number of parallel synthesis jobs to launch.
floorplan_np (int): Number of parallel floorplan jobs to launch.
place_np (int): Number of parallel placement jobs to launch.
cts_np (int): Number of parallel clock tree synthesis jobs to launch.
route_np (int): Number of parallel routing jobs to launch.
File: asicflow.py
2.1.5.1. Graph#
2.1.5.2. Nodes#
2.1.5.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bambu.convert/ConvertTask |
|
str |
bambu |
2.1.5.2.2. synthesis/0#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.5.2.3. synthesis/1#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.5.2.4. synthesis/2#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.5.2.5. synthesis.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.5.2.6. cleanup.clean/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis.min', '0') |
|
str |
cleanup_synth |
|
str |
siliconcompiler.tools.openroad.synth_cleanup/CleanupSynthTask |
|
str |
openroad |
2.1.5.2.7. synthesis.timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis.min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.1.5.2.8. floorplan.init/0#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.5.2.9. floorplan.init/1#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.5.2.10. floorplan.init/2#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.5.2.11. floorplan.macro_placement/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.init', '0') |
|
str |
macro_placement |
|
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
str |
openroad |
2.1.5.2.12. floorplan.macro_placement/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.init', '1') |
|
str |
macro_placement |
|
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
str |
openroad |
2.1.5.2.13. floorplan.macro_placement/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.init', '2') |
|
str |
macro_placement |
|
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
str |
openroad |
2.1.5.2.14. floorplan.tapcell/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '0') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.5.2.15. floorplan.tapcell/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '1') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.5.2.16. floorplan.tapcell/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '2') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.5.2.17. floorplan.power_grid/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '0') |
|
str |
power_grid |
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
|
str |
openroad |
2.1.5.2.18. floorplan.power_grid/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '1') |
|
str |
power_grid |
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
|
str |
openroad |
2.1.5.2.19. floorplan.power_grid/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '2') |
|
str |
power_grid |
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
|
str |
openroad |
2.1.5.2.20. floorplan.pin_placement/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.power_grid', '0') |
|
str |
pin_placement |
|
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
str |
openroad |
2.1.5.2.21. floorplan.pin_placement/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.power_grid', '1') |
|
str |
pin_placement |
|
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
str |
openroad |
2.1.5.2.22. floorplan.pin_placement/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.power_grid', '2') |
|
str |
pin_placement |
|
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
str |
openroad |
2.1.5.2.23. floorplan.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.5.2.24. place.global/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.5.2.25. place.global/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.5.2.26. place.global/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.5.2.27. place.repair_design/0#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '0') |
|
str |
repair_design |
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
|
str |
openroad |
2.1.5.2.28. place.repair_design/1#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '1') |
|
str |
repair_design |
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
|
str |
openroad |
2.1.5.2.29. place.repair_design/2#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '2') |
|
str |
repair_design |
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
|
str |
openroad |
2.1.5.2.30. place.detailed/0#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '0') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.5.2.31. place.detailed/1#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '1') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.5.2.32. place.detailed/2#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '2') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.5.2.33. place.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.5.2.34. cts.clock_tree_synthesis/0#
Keypath |
Type |
Value |
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
str |
openroad |
2.1.5.2.35. cts.clock_tree_synthesis/1#
Keypath |
Type |
Value |
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
str |
openroad |
2.1.5.2.36. cts.clock_tree_synthesis/2#
Keypath |
Type |
Value |
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
str |
openroad |
2.1.5.2.37. cts.repair_timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '0') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.5.2.38. cts.repair_timing/1#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '1') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.5.2.39. cts.repair_timing/2#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '2') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.5.2.40. cts.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.5.2.41. cts.fillcell/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.min', '0') |
|
str |
fillercell_insertion |
|
str |
siliconcompiler.tools.openroad.fillercell_insertion/FillCellTask |
|
str |
openroad |
2.1.5.2.42. route.global/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.5.2.43. route.global/1#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.5.2.44. route.global/2#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.5.2.45. route.antenna_repair/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '0') |
|
str |
antenna_repair |
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
|
str |
openroad |
2.1.5.2.46. route.antenna_repair/1#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '1') |
|
str |
antenna_repair |
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
|
str |
openroad |
2.1.5.2.47. route.antenna_repair/2#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '2') |
|
str |
antenna_repair |
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
|
str |
openroad |
2.1.5.2.48. route.detailed/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '0') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.5.2.49. route.detailed/1#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '1') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.5.2.50. route.detailed/2#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '2') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.5.2.51. route.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.5.2.52. dfm.metal_fill/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.min', '0') |
|
str |
fillmetal_insertion |
|
str |
siliconcompiler.tools.openroad.fillmetal_insertion/FillMetalTask |
|
str |
openroad |
2.1.5.2.53. write.gds/0#
Keypath |
Type |
Value |
[(str,str)] |
('dfm.metal_fill', '0') |
|
str |
export |
|
str |
siliconcompiler.tools.klayout.export/ExportTask |
|
str |
klayout |
2.1.5.2.54. write.views/0#
Keypath |
Type |
Value |
[(str,str)] |
('dfm.metal_fill', '0') |
|
str |
write_data |
|
str |
siliconcompiler.tools.openroad.write_data/WriteViewsTask |
|
str |
openroad |
2.1.6. asicflow-bluespec / 5#
A configurable ASIC compilation flow.
This flow targets ASIC designs, taking RTL through a complete synthesis, place-and-route, and finishing flow.
The flow is divided into the following major steps:
elaborate: RTL elaboration using Slang.
synthesis: RTL synthesis using Yosys.
floorplan: Floorplanning, including macro placement, tapcell/endcap insertion, power grid generation, and pin placement.
place: Global and detailed placement.
cts: Clock tree synthesis and post-CTS timing repair.
route: Global and detailed routing.
dfm: Design-for-manufacturing steps, primarily metal fill.
write: Writing out final views of the design (GDSII, etc.).
The synthesis, floorplan, place, cts, and route steps support parallel
execution to explore different strategies. This can be configured by
setting the corresponding *_np argument to a value greater than 1.
- Args:
name (str, optional): The name of the flow. If not provided, it defaults to ‘asicflow-<language>’.
language (str): The hardware description language of the design. One of ‘verilog’, ‘systemverilog’, ‘systemverilog-sv2v’, ‘chisel’, ‘vhdl’, or ‘hls’.
syn_np (int): Number of parallel synthesis jobs to launch.
floorplan_np (int): Number of parallel floorplan jobs to launch.
place_np (int): Number of parallel placement jobs to launch.
cts_np (int): Number of parallel clock tree synthesis jobs to launch.
route_np (int): Number of parallel routing jobs to launch.
File: asicflow.py
2.1.6.1. Graph#
2.1.6.2. Nodes#
2.1.6.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bluespec.convert/ConvertTask |
|
str |
bluespec |
2.1.6.2.2. synthesis/0#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.6.2.3. synthesis/1#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.6.2.4. synthesis/2#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.1.6.2.5. synthesis.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.6.2.6. cleanup.clean/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis.min', '0') |
|
str |
cleanup_synth |
|
str |
siliconcompiler.tools.openroad.synth_cleanup/CleanupSynthTask |
|
str |
openroad |
2.1.6.2.7. synthesis.timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis.min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.1.6.2.8. floorplan.init/0#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.6.2.9. floorplan.init/1#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.6.2.10. floorplan.init/2#
Keypath |
Type |
Value |
[(str,str)] |
('cleanup.clean', '0') |
|
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.6.2.11. floorplan.macro_placement/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.init', '0') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.6.2.12. floorplan.macro_placement/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.init', '1') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.6.2.13. floorplan.macro_placement/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.init', '2') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.6.2.14. floorplan.tapcell/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '0') |
|
str |
endcap_tapcell_insertion |
|
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
str |
openroad |
2.1.6.2.15. floorplan.tapcell/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '1') |
|
str |
endcap_tapcell_insertion |
|
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
str |
openroad |
2.1.6.2.16. floorplan.tapcell/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.macro_placement', '2') |
|
str |
endcap_tapcell_insertion |
|
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
str |
openroad |
2.1.6.2.17. floorplan.power_grid/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '0') |
|
str |
power_grid |
|
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
str |
openroad |
2.1.6.2.18. floorplan.power_grid/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '1') |
|
str |
power_grid |
|
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
str |
openroad |
2.1.6.2.19. floorplan.power_grid/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.tapcell', '2') |
|
str |
power_grid |
|
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
str |
openroad |
2.1.6.2.20. floorplan.pin_placement/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.power_grid', '0') |
|
str |
pin_placement |
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
|
str |
openroad |
2.1.6.2.21. floorplan.pin_placement/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.power_grid', '1') |
|
str |
pin_placement |
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
|
str |
openroad |
2.1.6.2.22. floorplan.pin_placement/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('floorplan.power_grid', '2') |
|
str |
pin_placement |
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
|
str |
openroad |
2.1.6.2.23. floorplan.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.6.2.24. place.global/0#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.6.2.25. place.global/1#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.6.2.26. place.global/2#
Keypath |
Type |
Value |
[(str,str)] |
('floorplan.min', '0') |
|
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.6.2.27. place.repair_design/0#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '0') |
|
str |
repair_design |
|
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
str |
openroad |
2.1.6.2.28. place.repair_design/1#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '1') |
|
str |
repair_design |
|
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
str |
openroad |
2.1.6.2.29. place.repair_design/2#
Keypath |
Type |
Value |
[(str,str)] |
('place.global', '2') |
|
str |
repair_design |
|
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
str |
openroad |
2.1.6.2.30. place.detailed/0#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '0') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.6.2.31. place.detailed/1#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '1') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.6.2.32. place.detailed/2#
Keypath |
Type |
Value |
[(str,str)] |
('place.repair_design', '2') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.6.2.33. place.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.6.2.34. cts.clock_tree_synthesis/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
|
str |
openroad |
2.1.6.2.35. cts.clock_tree_synthesis/1#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
|
str |
openroad |
2.1.6.2.36. cts.clock_tree_synthesis/2#
Keypath |
Type |
Value |
|
[(str,str)] |
('place.min', '0') |
|
str |
clock_tree_synthesis |
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
|
str |
openroad |
2.1.6.2.37. cts.repair_timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '0') |
|
str |
repair_timing |
|
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
str |
openroad |
2.1.6.2.38. cts.repair_timing/1#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '1') |
|
str |
repair_timing |
|
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
str |
openroad |
2.1.6.2.39. cts.repair_timing/2#
Keypath |
Type |
Value |
[(str,str)] |
('cts.clock_tree_synthesis', '2') |
|
str |
repair_timing |
|
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
str |
openroad |
2.1.6.2.40. cts.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.6.2.41. cts.fillcell/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.min', '0') |
|
str |
fillercell_insertion |
|
str |
siliconcompiler.tools.openroad.fillercell_insertion/FillCellTask |
|
str |
openroad |
2.1.6.2.42. route.global/0#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.6.2.43. route.global/1#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.6.2.44. route.global/2#
Keypath |
Type |
Value |
[(str,str)] |
('cts.fillcell', '0') |
|
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.6.2.45. route.antenna_repair/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '0') |
|
str |
antenna_repair |
|
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
str |
openroad |
2.1.6.2.46. route.antenna_repair/1#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '1') |
|
str |
antenna_repair |
|
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
str |
openroad |
2.1.6.2.47. route.antenna_repair/2#
Keypath |
Type |
Value |
[(str,str)] |
('route.global', '2') |
|
str |
antenna_repair |
|
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
str |
openroad |
2.1.6.2.48. route.detailed/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '0') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.6.2.49. route.detailed/1#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '1') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.6.2.50. route.detailed/2#
Keypath |
Type |
Value |
[(str,str)] |
('route.antenna_repair', '2') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.6.2.51. route.min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.6.2.52. dfm.metal_fill/0#
Keypath |
Type |
Value |
[(str,str)] |
('route.min', '0') |
|
str |
fillmetal_insertion |
|
str |
siliconcompiler.tools.openroad.fillmetal_insertion/FillMetalTask |
|
str |
openroad |
2.1.6.2.53. write.gds/0#
Keypath |
Type |
Value |
[(str,str)] |
('dfm.metal_fill', '0') |
|
str |
export |
|
str |
siliconcompiler.tools.klayout.export/ExportTask |
|
str |
klayout |
2.1.6.2.54. write.views/0#
Keypath |
Type |
Value |
[(str,str)] |
('dfm.metal_fill', '0') |
|
str |
write_data |
|
str |
siliconcompiler.tools.openroad.write_data/WriteViewsTask |
|
str |
openroad |
2.1.7. ASIC Subflows#
The ASIC flow is assembled from the following stage-specific subflows. They can be used on their own to run or debug an individual stage of the back-end.
2.1.7.1. cleanup_synthflow#
A flow that performs only the synthesis cleanup portion of the ASIC flow.
This flow is useful for quickly checking that a design can be successfully cleaned up after synthesis without running floorplanning or timing analysis. It includes the removal of synthesis buffers and dead logic.
File: asicflow.py
2.1.7.1.1. Graph#
2.1.7.1.2. Nodes#
2.1.7.1.2.1. clean/0#
Keypath |
Type |
Value |
str |
cleanup_synth |
|
str |
siliconcompiler.tools.openroad.synth_cleanup/CleanupSynthTask |
|
str |
openroad |
2.1.7.1.2.2. clean/1#
Keypath |
Type |
Value |
str |
cleanup_synth |
|
str |
siliconcompiler.tools.openroad.synth_cleanup/CleanupSynthTask |
|
str |
openroad |
2.1.7.1.2.3. clean/2#
Keypath |
Type |
Value |
str |
cleanup_synth |
|
str |
siliconcompiler.tools.openroad.synth_cleanup/CleanupSynthTask |
|
str |
openroad |
2.1.7.1.2.4. min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.7.2. floorplanningflow#
A flow that performs only the floorplanning portion of the ASIC flow.
This flow is useful for quickly checking that a design can be successfully floorplanned without running synthesis or timing analysis. It includes macro placement, tapcell/endcap insertion, power grid generation, and pin placement.
File: asicflow.py
2.1.7.2.1. Graph#
2.1.7.2.2. Nodes#
2.1.7.2.2.1. init/0#
Keypath |
Type |
Value |
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.7.2.2.2. init/1#
Keypath |
Type |
Value |
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.7.2.2.3. init/2#
Keypath |
Type |
Value |
str |
init_floorplan |
|
str |
siliconcompiler.tools.openroad.init_floorplan/InitFloorplanTask |
|
str |
openroad |
2.1.7.2.2.4. macro_placement/0#
Keypath |
Type |
Value |
[(str,str)] |
('init', '0') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.7.2.2.5. macro_placement/1#
Keypath |
Type |
Value |
[(str,str)] |
('init', '1') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.7.2.2.6. macro_placement/2#
Keypath |
Type |
Value |
[(str,str)] |
('init', '2') |
|
str |
macro_placement |
|
str |
siliconcompiler.tools.openroad.macro_placement/MacroPlacementTask |
|
str |
openroad |
2.1.7.2.2.7. tapcell/0#
Keypath |
Type |
Value |
[(str,str)] |
('macro_placement', '0') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.7.2.2.8. tapcell/1#
Keypath |
Type |
Value |
[(str,str)] |
('macro_placement', '1') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.7.2.2.9. tapcell/2#
Keypath |
Type |
Value |
[(str,str)] |
('macro_placement', '2') |
|
str |
endcap_tapcell_insertion |
|
str |
siliconcompiler.tools.openroad.endcap_tapcell_insertion/EndCapTapCellTask |
|
str |
openroad |
2.1.7.2.2.10. power_grid/0#
Keypath |
Type |
Value |
[(str,str)] |
('tapcell', '0') |
|
str |
power_grid |
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
|
str |
openroad |
2.1.7.2.2.11. power_grid/1#
Keypath |
Type |
Value |
[(str,str)] |
('tapcell', '1') |
|
str |
power_grid |
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
|
str |
openroad |
2.1.7.2.2.12. power_grid/2#
Keypath |
Type |
Value |
[(str,str)] |
('tapcell', '2') |
|
str |
power_grid |
|
str |
siliconcompiler.tools.openroad.power_grid/PowerGridTask |
|
str |
openroad |
2.1.7.2.2.13. pin_placement/0#
Keypath |
Type |
Value |
[(str,str)] |
('power_grid', '0') |
|
str |
pin_placement |
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
|
str |
openroad |
2.1.7.2.2.14. pin_placement/1#
Keypath |
Type |
Value |
[(str,str)] |
('power_grid', '1') |
|
str |
pin_placement |
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
|
str |
openroad |
2.1.7.2.2.15. pin_placement/2#
Keypath |
Type |
Value |
[(str,str)] |
('power_grid', '2') |
|
str |
pin_placement |
|
str |
siliconcompiler.tools.openroad.pin_placement/PinPlacementTask |
|
str |
openroad |
2.1.7.2.2.16. min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.7.3. placementflow#
A flow that performs only the placement portion of the ASIC flow.
This flow is useful for quickly checking that a design can be successfully placed without running synthesis or timing analysis. It includes global placement, repair, and detailed placement.
File: asicflow.py
2.1.7.3.1. Graph#
2.1.7.3.2. Nodes#
2.1.7.3.2.1. global/0#
Keypath |
Type |
Value |
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.7.3.2.2. global/1#
Keypath |
Type |
Value |
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.7.3.2.3. global/2#
Keypath |
Type |
Value |
str |
global_placement |
|
str |
siliconcompiler.tools.openroad.global_placement/GlobalPlacementTask |
|
str |
openroad |
2.1.7.3.2.4. repair_design/0#
Keypath |
Type |
Value |
[(str,str)] |
('global', '0') |
|
str |
repair_design |
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
|
str |
openroad |
2.1.7.3.2.5. repair_design/1#
Keypath |
Type |
Value |
[(str,str)] |
('global', '1') |
|
str |
repair_design |
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
|
str |
openroad |
2.1.7.3.2.6. repair_design/2#
Keypath |
Type |
Value |
[(str,str)] |
('global', '2') |
|
str |
repair_design |
|
str |
siliconcompiler.tools.openroad.repair_design/RepairDesignTask |
|
str |
openroad |
2.1.7.3.2.7. detailed/0#
Keypath |
Type |
Value |
[(str,str)] |
('repair_design', '0') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.7.3.2.8. detailed/1#
Keypath |
Type |
Value |
[(str,str)] |
('repair_design', '1') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.7.3.2.9. detailed/2#
Keypath |
Type |
Value |
[(str,str)] |
('repair_design', '2') |
|
str |
detailed_placement |
|
str |
siliconcompiler.tools.openroad.detailed_placement/DetailedPlacementTask |
|
str |
openroad |
2.1.7.3.2.10. min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.7.4. ctssflow#
A flow that performs only the clock tree synthesis portion of the ASIC flow.
This flow is useful for quickly checking that a design can be successfully clock tree synthesized without running synthesis or timing analysis. It includes clock tree synthesis, repair, and filler cell insertion.
File: asicflow.py
2.1.7.4.1. Graph#
2.1.7.4.2. Nodes#
2.1.7.4.2.1. clock_tree_synthesis/0#
Keypath |
Type |
Value |
str |
clock_tree_synthesis |
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
|
str |
openroad |
2.1.7.4.2.2. clock_tree_synthesis/1#
Keypath |
Type |
Value |
str |
clock_tree_synthesis |
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
|
str |
openroad |
2.1.7.4.2.3. clock_tree_synthesis/2#
Keypath |
Type |
Value |
str |
clock_tree_synthesis |
|
str |
siliconcompiler.tools.openroad.clock_tree_synthesis/CTSTask |
|
str |
openroad |
2.1.7.4.2.4. repair_timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('clock_tree_synthesis', '0') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.7.4.2.5. repair_timing/1#
Keypath |
Type |
Value |
[(str,str)] |
('clock_tree_synthesis', '1') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.7.4.2.6. repair_timing/2#
Keypath |
Type |
Value |
[(str,str)] |
('clock_tree_synthesis', '2') |
|
str |
repair_timing |
|
str |
siliconcompiler.tools.openroad.repair_timing/RepairTimingTask |
|
str |
openroad |
2.1.7.4.2.7. min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.7.5. fillercellflow#
A flow that performs only the design-for-manufacturing (DFM) portion of the ASIC flow.
This flow is useful for quickly checking that a design can be successfully processed for DFM without running synthesis or timing analysis. It includes filler cell insertion.
File: asicflow.py
2.1.7.5.1. Graph#
2.1.7.5.2. Nodes#
2.1.7.5.2.1. fillcell/0#
Keypath |
Type |
Value |
str |
fillercell_insertion |
|
str |
siliconcompiler.tools.openroad.fillercell_insertion/FillCellTask |
|
str |
openroad |
2.1.7.5.2.2. fillcell/1#
Keypath |
Type |
Value |
str |
fillercell_insertion |
|
str |
siliconcompiler.tools.openroad.fillercell_insertion/FillCellTask |
|
str |
openroad |
2.1.7.5.2.3. fillcell/2#
Keypath |
Type |
Value |
str |
fillercell_insertion |
|
str |
siliconcompiler.tools.openroad.fillercell_insertion/FillCellTask |
|
str |
openroad |
2.1.7.5.2.4. min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.7.6. routingflow#
A flow that performs only the routing portion of the ASIC flow.
This flow is useful for quickly checking that a design can be successfully routed without running synthesis or timing analysis. It includes global routing, antenna repair, and detailed routing.
File: asicflow.py
2.1.7.6.1. Graph#
2.1.7.6.2. Nodes#
2.1.7.6.2.1. global/0#
Keypath |
Type |
Value |
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.7.6.2.2. global/1#
Keypath |
Type |
Value |
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.7.6.2.3. global/2#
Keypath |
Type |
Value |
str |
global_route |
|
str |
siliconcompiler.tools.openroad.global_route/GlobalRouteTask |
|
str |
openroad |
2.1.7.6.2.4. antenna_repair/0#
Keypath |
Type |
Value |
[(str,str)] |
('global', '0') |
|
str |
antenna_repair |
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
|
str |
openroad |
2.1.7.6.2.5. antenna_repair/1#
Keypath |
Type |
Value |
[(str,str)] |
('global', '1') |
|
str |
antenna_repair |
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
|
str |
openroad |
2.1.7.6.2.6. antenna_repair/2#
Keypath |
Type |
Value |
[(str,str)] |
('global', '2') |
|
str |
antenna_repair |
|
str |
siliconcompiler.tools.openroad.antenna_repair/AntennaRepairTask |
|
str |
openroad |
2.1.7.6.2.7. detailed/0#
Keypath |
Type |
Value |
[(str,str)] |
('antenna_repair', '0') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.7.6.2.8. detailed/1#
Keypath |
Type |
Value |
[(str,str)] |
('antenna_repair', '1') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.7.6.2.9. detailed/2#
Keypath |
Type |
Value |
[(str,str)] |
('antenna_repair', '2') |
|
str |
detailed_route |
|
str |
siliconcompiler.tools.openroad.detailed_route/DetailedRouteTask |
|
str |
openroad |
2.1.7.6.2.10. min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.1.7.7. metalfillflow#
A flow that performs only the metal fill portion of the ASIC flow.
This flow is useful for quickly checking that a design can be successfully processed for metal fill without running synthesis or timing analysis. It includes metal fill insertion.
File: asicflow.py
2.1.7.7.1. Graph#
2.1.7.7.2. Nodes#
2.1.7.7.2.1. metal_fill/0#
Keypath |
Type |
Value |
str |
fillmetal_insertion |
|
str |
siliconcompiler.tools.openroad.fillmetal_insertion/FillMetalTask |
|
str |
openroad |
2.1.7.7.2.2. metal_fill/1#
Keypath |
Type |
Value |
str |
fillmetal_insertion |
|
str |
siliconcompiler.tools.openroad.fillmetal_insertion/FillMetalTask |
|
str |
openroad |
2.1.7.7.2.3. metal_fill/2#
Keypath |
Type |
Value |
str |
fillmetal_insertion |
|
str |
siliconcompiler.tools.openroad.fillmetal_insertion/FillMetalTask |
|
str |
openroad |
2.1.7.7.2.4. min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.2. Elaboration Flows#
Front-end flows that elaborate an RTL design from its source files and emit Verilog. Because every variant produces Verilog, they can be used interchangeably as a front-end for any downstream flow that consumes a Verilog netlist.
2.2.1. elaborationflow-verilog / 0#
A flow which elaborates an RTL design from its source files.
This flow performs only the elaboration portion of the synthesis flow, producing an elaborated design without running synthesis or timing analysis. It is useful for quickly checking that a design elaborates cleanly.
- The flow consists of the following step:
elaborate: Elaborates the RTL design from its source files.
The final node, elaborate, emits Verilog.
File: elaborationflow.py
2.2.1.1. Graph#
2.2.1.2. Nodes#
2.2.1.2.1. elaborate/0#
Keypath |
Type |
Value |
str |
elaborate |
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
|
str |
slang |
2.2.2. elaborationflow-systemverilog / 1#
A flow which elaborates an RTL design from its source files.
This flow performs only the elaboration portion of the synthesis flow, producing an elaborated design without running synthesis or timing analysis. It is useful for quickly checking that a design elaborates cleanly.
- The flow consists of the following step:
elaborate: Elaborates the RTL design from its source files.
The final node, elaborate, emits Verilog.
File: elaborationflow.py
2.2.2.1. Graph#
2.2.2.2. Nodes#
2.2.2.2.1. elaborate/0#
Keypath |
Type |
Value |
str |
elaborate |
|
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
str |
slang |
2.2.3. elaborationflow-systemverilog-sv2v / 2#
A flow which elaborates an RTL design from its source files.
This flow performs only the elaboration portion of the synthesis flow, producing an elaborated design without running synthesis or timing analysis. It is useful for quickly checking that a design elaborates cleanly.
- The flow consists of the following step:
elaborate: Elaborates the RTL design from its source files.
The final node, elaborate, emits Verilog.
File: elaborationflow.py
2.2.3.1. Graph#
2.2.3.2. Nodes#
2.2.3.2.1. elaborate/0#
Keypath |
Type |
Value |
|
str |
elaborate |
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
|
str |
slang |
2.2.3.2.2. convert/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('elaborate', '0') |
|
str |
convert |
|
str |
siliconcompiler.tools.sv2v.convert/ConvertTask |
|
str |
sv2v |
2.2.4. elaborationflow-chisel / 3#
A flow which elaborates an RTL design from its source files.
This flow performs only the elaboration portion of the synthesis flow, producing an elaborated design without running synthesis or timing analysis. It is useful for quickly checking that a design elaborates cleanly.
- The flow consists of the following step:
elaborate: Elaborates the RTL design from its source files.
The final node, elaborate, emits Verilog.
File: elaborationflow.py
2.2.4.1. Graph#
2.2.4.2. Nodes#
2.2.4.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.chisel.convert/ConvertTask |
|
str |
chisel |
2.2.5. elaborationflow-vhdl / 4#
A flow which elaborates an RTL design from its source files.
This flow performs only the elaboration portion of the synthesis flow, producing an elaborated design without running synthesis or timing analysis. It is useful for quickly checking that a design elaborates cleanly.
- The flow consists of the following step:
elaborate: Elaborates the RTL design from its source files.
The final node, elaborate, emits Verilog.
File: elaborationflow.py
2.2.5.1. Graph#
2.2.5.2. Nodes#
2.2.5.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.ghdl.convert/ConvertTask |
|
str |
ghdl |
2.2.6. elaborationflow-hls / 5#
A flow which elaborates an RTL design from its source files.
This flow performs only the elaboration portion of the synthesis flow, producing an elaborated design without running synthesis or timing analysis. It is useful for quickly checking that a design elaborates cleanly.
- The flow consists of the following step:
elaborate: Elaborates the RTL design from its source files.
The final node, elaborate, emits Verilog.
File: elaborationflow.py
2.2.6.1. Graph#
2.2.6.2. Nodes#
2.2.6.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bambu.convert/ConvertTask |
|
str |
bambu |
2.2.7. elaborationflow-bluespec / 6#
A flow which elaborates an RTL design from its source files.
This flow performs only the elaboration portion of the synthesis flow, producing an elaborated design without running synthesis or timing analysis. It is useful for quickly checking that a design elaborates cleanly.
- The flow consists of the following step:
elaborate: Elaborates the RTL design from its source files.
The final node, elaborate, emits Verilog.
File: elaborationflow.py
2.2.7.1. Graph#
2.2.7.2. Nodes#
2.2.7.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bluespec.convert/ConvertTask |
|
str |
bluespec |
2.2.8. Elaboration Subflows#
The language-specific building blocks for elaborating a design in a single source language. They can be used on their own as a front-end.
2.2.8.1. slangelaborationflow#
A flow which elaborates an RTL design from its source files.
This flow performs only the elaboration portion of the synthesis flow, producing an elaborated design without running synthesis or timing analysis. It is useful for quickly checking that a design elaborates cleanly.
- The flow consists of the following step:
elaborate: Elaborates the RTL design from its source files.
The final node, elaborate, emits Verilog.
File: elaborationflow.py
2.2.8.1.1. Graph#
2.2.8.1.2. Nodes#
2.2.8.1.2.1. elaborate/0#
Keypath |
Type |
Value |
str |
elaborate |
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
|
str |
slang |
2.2.8.2. sv2velaborationflow#
A SystemVerilog-to-Verilog elaboration flow.
This flow is intended for designs written in SystemVerilog that may not be fully supported by downstream tools. It inserts a ‘convert’ step using SV2V before the standard ‘elaborate’ step to ensure the design is in a compatible Verilog format.
The final node, elaborate, emits Verilog.
File: elaborationflow.py
2.2.8.2.1. Graph#
2.2.8.2.2. Nodes#
2.2.8.2.2.1. elaborate/0#
Keypath |
Type |
Value |
str |
elaborate |
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
|
str |
slang |
2.2.8.2.2.2. convert/0#
Keypath |
Type |
Value |
[(str,str)] |
('elaborate', '0') |
|
str |
convert |
|
str |
siliconcompiler.tools.sv2v.convert/ConvertTask |
|
str |
sv2v |
2.2.8.3. hlselaborationflow#
A High-Level Synthesis (HLS) elaboration flow.
This flow supports C-based HLS by using a ‘convert’ step which handles the conversion of HLS C code to RTL using the Bambu tool.
The final node, convert, emits Verilog.
File: elaborationflow.py
2.2.8.3.1. Graph#
2.2.8.3.2. Nodes#
2.2.8.3.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bambu.convert/ConvertTask |
|
str |
bambu |
2.2.8.4. vhdlelaborationflow#
A VHDL-based elaboration flow.
This flow supports VHDL input by using a ‘convert’ step which uses GHDL to analyze and elaborate the VHDL design.
The final node, convert, emits Verilog.
File: elaborationflow.py
2.2.8.4.1. Graph#
2.2.8.4.2. Nodes#
2.2.8.4.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.ghdl.convert/ConvertTask |
|
str |
ghdl |
2.2.8.5. chiselelaborationflow#
A Chisel-based elaboration flow.
This flow supports designs written in the Chisel hardware construction language by using a ‘convert’ step that uses the Chisel compiler to generate Verilog from the Chisel source.
The final node, convert, emits Verilog.
File: elaborationflow.py
2.2.8.5.1. Graph#
2.2.8.5.2. Nodes#
2.2.8.5.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.chisel.convert/ConvertTask |
|
str |
chisel |
2.2.8.6. bluespecelaborationflow#
A Bluespec-based elaboration flow.
This flow supports designs written in the Bluespec hardware construction language by using a ‘convert’ step that uses the Bluespec compiler to generate Verilog from the Bluespec source.
The final node, convert, emits Verilog.
File: elaborationflow.py
2.2.8.6.1. Graph#
2.2.8.6.2. Nodes#
2.2.8.6.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bluespec.convert/ConvertTask |
|
str |
bluespec |
2.3. Synthesis Flows#
Flows that elaborate and synthesize an RTL design into a gate-level netlist. Each variant pairs a different front-end language with the shared Yosys synthesis step.
2.3.1. synflow-verilog / 0#
A configurable ASIC synthesis flow with static timing analysis.
This flow translates RTL designs into a gate-level netlist and then performs static timing analysis (STA) on the result. It allows for parallel execution of both synthesis and timing steps to explore different strategies or speed up execution.
- The flow consists of the following steps:
elaborate: Elaborates the RTL design from its source files.
- synthesis: Translates the elaborated RTL into a gate-level netlist
using Yosys.
- timing: Performs static timing analysis on the synthesized netlist
using OpenSTA.
File: synflow.py
2.3.1.1. Graph#
2.3.1.2. Nodes#
2.3.1.2.1. elaborate/0#
Keypath |
Type |
Value |
str |
elaborate |
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
|
str |
slang |
2.3.1.2.2. synthesis/0#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('elaborate', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.1.2.3. synthesis/1#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('elaborate', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.1.2.4. synthesis/2#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('elaborate', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.1.2.5. min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.3.1.2.6. timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.1.2.7. timing/1#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.1.2.8. timing/2#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.2. synflow-systemverilog-sv2v / 1#
A configurable ASIC synthesis flow with static timing analysis.
This flow translates RTL designs into a gate-level netlist and then performs static timing analysis (STA) on the result. It allows for parallel execution of both synthesis and timing steps to explore different strategies or speed up execution.
- The flow consists of the following steps:
elaborate: Elaborates the RTL design from its source files.
- synthesis: Translates the elaborated RTL into a gate-level netlist
using Yosys.
- timing: Performs static timing analysis on the synthesized netlist
using OpenSTA.
File: synflow.py
2.3.2.1. Graph#
2.3.2.2. Nodes#
2.3.2.2.1. elaborate/0#
Keypath |
Type |
Value |
str |
elaborate |
|
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
str |
slang |
2.3.2.2.2. convert/0#
Keypath |
Type |
Value |
[(str,str)] |
('elaborate', '0') |
|
str |
convert |
|
str |
siliconcompiler.tools.sv2v.convert/ConvertTask |
|
str |
sv2v |
2.3.2.2.3. synthesis/0#
Keypath |
Type |
Value |
|
float |
0.0 |
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
str |
yosys |
2.3.2.2.4. synthesis/1#
Keypath |
Type |
Value |
|
float |
0.0 |
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
str |
yosys |
2.3.2.2.5. synthesis/2#
Keypath |
Type |
Value |
|
float |
0.0 |
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
str |
yosys |
2.3.2.2.6. min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.3.2.2.7. timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.2.2.8. timing/1#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.2.2.9. timing/2#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.3. synflow-chisel / 2#
A configurable ASIC synthesis flow with static timing analysis.
This flow translates RTL designs into a gate-level netlist and then performs static timing analysis (STA) on the result. It allows for parallel execution of both synthesis and timing steps to explore different strategies or speed up execution.
- The flow consists of the following steps:
elaborate: Elaborates the RTL design from its source files.
- synthesis: Translates the elaborated RTL into a gate-level netlist
using Yosys.
- timing: Performs static timing analysis on the synthesized netlist
using OpenSTA.
File: synflow.py
2.3.3.1. Graph#
2.3.3.2. Nodes#
2.3.3.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.chisel.convert/ConvertTask |
|
str |
chisel |
2.3.3.2.2. synthesis/0#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.3.2.3. synthesis/1#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.3.2.4. synthesis/2#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.3.2.5. min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.3.3.2.6. timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.3.2.7. timing/1#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.3.2.8. timing/2#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.4. synflow-vhdl / 3#
A configurable ASIC synthesis flow with static timing analysis.
This flow translates RTL designs into a gate-level netlist and then performs static timing analysis (STA) on the result. It allows for parallel execution of both synthesis and timing steps to explore different strategies or speed up execution.
- The flow consists of the following steps:
elaborate: Elaborates the RTL design from its source files.
- synthesis: Translates the elaborated RTL into a gate-level netlist
using Yosys.
- timing: Performs static timing analysis on the synthesized netlist
using OpenSTA.
File: synflow.py
2.3.4.1. Graph#
2.3.4.2. Nodes#
2.3.4.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.ghdl.convert/ConvertTask |
|
str |
ghdl |
2.3.4.2.2. synthesis/0#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.4.2.3. synthesis/1#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.4.2.4. synthesis/2#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.4.2.5. min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.3.4.2.6. timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.4.2.7. timing/1#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.4.2.8. timing/2#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.5. synflow-hls / 4#
A configurable ASIC synthesis flow with static timing analysis.
This flow translates RTL designs into a gate-level netlist and then performs static timing analysis (STA) on the result. It allows for parallel execution of both synthesis and timing steps to explore different strategies or speed up execution.
- The flow consists of the following steps:
elaborate: Elaborates the RTL design from its source files.
- synthesis: Translates the elaborated RTL into a gate-level netlist
using Yosys.
- timing: Performs static timing analysis on the synthesized netlist
using OpenSTA.
File: synflow.py
2.3.5.1. Graph#
2.3.5.2. Nodes#
2.3.5.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bambu.convert/ConvertTask |
|
str |
bambu |
2.3.5.2.2. synthesis/0#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.5.2.3. synthesis/1#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.5.2.4. synthesis/2#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.5.2.5. min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.3.5.2.6. timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.5.2.7. timing/1#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.5.2.8. timing/2#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.6. synflow-bluespec / 5#
A configurable ASIC synthesis flow with static timing analysis.
This flow translates RTL designs into a gate-level netlist and then performs static timing analysis (STA) on the result. It allows for parallel execution of both synthesis and timing steps to explore different strategies or speed up execution.
- The flow consists of the following steps:
elaborate: Elaborates the RTL design from its source files.
- synthesis: Translates the elaborated RTL into a gate-level netlist
using Yosys.
- timing: Performs static timing analysis on the synthesized netlist
using OpenSTA.
File: synflow.py
2.3.6.1. Graph#
2.3.6.2. Nodes#
2.3.6.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bluespec.convert/ConvertTask |
|
str |
bluespec |
2.3.6.2.2. synthesis/0#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.6.2.3. synthesis/1#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.6.2.4. synthesis/2#
Keypath |
Type |
Value |
float |
0.0 |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_asic |
|
str |
siliconcompiler.tools.yosys.syn_asic/ASICSynthesis |
|
str |
yosys |
2.3.6.2.5. min/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
minimum |
|
str |
siliconcompiler.tools.builtin.minimum/MinimumTask |
|
str |
builtin |
2.3.6.2.6. timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.6.2.7. timing/1#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.3.6.2.8. timing/2#
Keypath |
Type |
Value |
[(str,str)] |
('min', '0') |
|
str |
timing |
|
str |
siliconcompiler.tools.opensta.timing/TimingTask |
|
str |
opensta |
2.4. Lint Flows#
Flows for linting an RTL design.
2.4.1. lintflow-all / 0#
An RTL linting flow.
This flow is designed to check RTL source files for stylistic, semantic, and syntactic issues using a specified linting tool.
Supported tools:
‘slang’: A linter based on the Slang compiler.
‘verilator’: A linter based on the Verilator tool.
File: lintflow.py
2.4.1.1. Graph#
2.4.1.2. Nodes#
2.4.1.2.1. slang.lint/0#
Keypath |
Type |
Value |
str |
lint |
|
str |
siliconcompiler.tools.slang.lint/Lint |
|
str |
slang |
2.4.1.2.2. verilator.lint/0#
Keypath |
Type |
Value |
str |
lint |
|
str |
siliconcompiler.tools.verilator.lint/LintTask |
|
str |
verilator |
2.4.2. lintflow-slang / 1#
An RTL linting flow.
This flow is designed to check RTL source files for stylistic, semantic, and syntactic issues using a specified linting tool.
Supported tools:
‘slang’: A linter based on the Slang compiler.
‘verilator’: A linter based on the Verilator tool.
File: lintflow.py
2.4.2.1. Graph#
2.4.2.2. Nodes#
2.4.2.2.1. lint/0#
Keypath |
Type |
Value |
str |
lint |
|
str |
siliconcompiler.tools.slang.lint/Lint |
|
str |
slang |
2.4.3. lintflow-verilator / 2#
An RTL linting flow.
This flow is designed to check RTL source files for stylistic, semantic, and syntactic issues using a specified linting tool.
Supported tools:
‘slang’: A linter based on the Slang compiler.
‘verilator’: A linter based on the Verilator tool.
File: lintflow.py
2.4.3.1. Graph#
2.4.3.2. Nodes#
2.4.3.2.1. lint/0#
Keypath |
Type |
Value |
str |
lint |
|
str |
siliconcompiler.tools.verilator.lint/LintTask |
|
str |
verilator |
2.4.4. verilatorlintflow#
A Verilator-based RTL linting flow.
This flow is designed to check RTL source files for stylistic, semantic, and syntactic issues using the Verilator tool.
File: lintflow.py
2.4.4.1. Graph#
2.4.4.2. Nodes#
2.4.4.2.1. lint/0#
Keypath |
Type |
Value |
str |
lint |
|
str |
siliconcompiler.tools.verilator.lint/LintTask |
|
str |
verilator |
2.4.5. slanglintflow#
A Slang-based RTL linting flow.
This flow is designed to check RTL source files for stylistic, semantic, and syntactic issues using the Slang compiler.
File: lintflow.py
2.4.5.1. Graph#
2.4.5.2. Nodes#
2.4.5.2.1. lint/0#
Keypath |
Type |
Value |
str |
lint |
|
str |
siliconcompiler.tools.slang.lint/Lint |
|
str |
slang |
2.5. Design Verification Flows#
Flows for simulating and verifying a design. Each variant targets a specific simulator (and optionally cocotb-based testbenches).
2.5.1. dvflow-icarus / 0#
A configurable constrained random stimulus DV flow.
The verification pipeline includes the following steps:
compile: RTL sources are compiled into an intermediate format.
sim: The compiled design is simulated with a generated testbench.
The dvflow can be parametrized using the ‘np’ parameter. Setting ‘np’ > 1 results in multiple independent verification pipelines being launched in parallel.
Supported tools are:
‘icarus’: Compiles and simulates with the Icarus Verilog simulator.
‘icarus-cocotb’: Compiles with Icarus and runs cocotb Python testbenches.
‘verilator’: Compiles and simulates with Verilator.
‘verilator-cocotb’: Compiles with Verilator and runs cocotb Python testbenches.
‘xyce’: Simulates a netlist with the Xyce circuit simulator.
‘xdm-xyce’: Converts a design to a Xyce-compatible format and simulates.
File: dvflow.py
2.5.1.1. Graph#
2.5.1.2. Nodes#
2.5.1.2.1. compile/0#
Keypath |
Type |
Value |
str |
compile |
|
str |
siliconcompiler.tools.icarus.compile/CompileTask |
|
str |
icarus |
2.5.1.2.2. simulate/0#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_input |
|
str |
siliconcompiler.tools.execute.exec_input/ExecInputTask |
|
str |
execute |
2.5.1.2.3. simulate/1#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_input |
|
str |
siliconcompiler.tools.execute.exec_input/ExecInputTask |
|
str |
execute |
2.5.1.2.4. simulate/2#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_input |
|
str |
siliconcompiler.tools.execute.exec_input/ExecInputTask |
|
str |
execute |
2.5.2. dvflow-icarus-cocotb / 1#
A configurable constrained random stimulus DV flow.
The verification pipeline includes the following steps:
compile: RTL sources are compiled into an intermediate format.
sim: The compiled design is simulated with a generated testbench.
The dvflow can be parametrized using the ‘np’ parameter. Setting ‘np’ > 1 results in multiple independent verification pipelines being launched in parallel.
Supported tools are:
‘icarus’: Compiles and simulates with the Icarus Verilog simulator.
‘icarus-cocotb’: Compiles with Icarus and runs cocotb Python testbenches.
‘verilator’: Compiles and simulates with Verilator.
‘verilator-cocotb’: Compiles with Verilator and runs cocotb Python testbenches.
‘xyce’: Simulates a netlist with the Xyce circuit simulator.
‘xdm-xyce’: Converts a design to a Xyce-compatible format and simulates.
File: dvflow.py
2.5.2.1. Graph#
2.5.2.2. Nodes#
2.5.2.2.1. compile/0#
Keypath |
Type |
Value |
str |
compile |
|
str |
siliconcompiler.tools.icarus.compile/CompileTask |
|
str |
icarus |
2.5.2.2.2. simulate/0#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_cocotb |
|
str |
siliconcompiler.tools.icarus.cocotb_exec/CocotbExecTask |
|
str |
icarus |
2.5.2.2.3. simulate/1#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_cocotb |
|
str |
siliconcompiler.tools.icarus.cocotb_exec/CocotbExecTask |
|
str |
icarus |
2.5.2.2.4. simulate/2#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_cocotb |
|
str |
siliconcompiler.tools.icarus.cocotb_exec/CocotbExecTask |
|
str |
icarus |
2.5.3. dvflow-verilator / 2#
A configurable constrained random stimulus DV flow.
The verification pipeline includes the following steps:
compile: RTL sources are compiled into an intermediate format.
sim: The compiled design is simulated with a generated testbench.
The dvflow can be parametrized using the ‘np’ parameter. Setting ‘np’ > 1 results in multiple independent verification pipelines being launched in parallel.
Supported tools are:
‘icarus’: Compiles and simulates with the Icarus Verilog simulator.
‘icarus-cocotb’: Compiles with Icarus and runs cocotb Python testbenches.
‘verilator’: Compiles and simulates with Verilator.
‘verilator-cocotb’: Compiles with Verilator and runs cocotb Python testbenches.
‘xyce’: Simulates a netlist with the Xyce circuit simulator.
‘xdm-xyce’: Converts a design to a Xyce-compatible format and simulates.
File: dvflow.py
2.5.3.1. Graph#
2.5.3.2. Nodes#
2.5.3.2.1. compile/0#
Keypath |
Type |
Value |
str |
compile |
|
str |
siliconcompiler.tools.verilator.compile/CompileTask |
|
str |
verilator |
2.5.3.2.2. simulate/0#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_input |
|
str |
siliconcompiler.tools.execute.exec_input/ExecInputTask |
|
str |
execute |
2.5.3.2.3. simulate/1#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_input |
|
str |
siliconcompiler.tools.execute.exec_input/ExecInputTask |
|
str |
execute |
2.5.3.2.4. simulate/2#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_input |
|
str |
siliconcompiler.tools.execute.exec_input/ExecInputTask |
|
str |
execute |
2.5.4. dvflow-verilator-cocotb / 3#
A configurable constrained random stimulus DV flow.
The verification pipeline includes the following steps:
compile: RTL sources are compiled into an intermediate format.
sim: The compiled design is simulated with a generated testbench.
The dvflow can be parametrized using the ‘np’ parameter. Setting ‘np’ > 1 results in multiple independent verification pipelines being launched in parallel.
Supported tools are:
‘icarus’: Compiles and simulates with the Icarus Verilog simulator.
‘icarus-cocotb’: Compiles with Icarus and runs cocotb Python testbenches.
‘verilator’: Compiles and simulates with Verilator.
‘verilator-cocotb’: Compiles with Verilator and runs cocotb Python testbenches.
‘xyce’: Simulates a netlist with the Xyce circuit simulator.
‘xdm-xyce’: Converts a design to a Xyce-compatible format and simulates.
File: dvflow.py
2.5.4.1. Graph#
2.5.4.2. Nodes#
2.5.4.2.1. compile/0#
Keypath |
Type |
Value |
str |
cocotb_compile |
|
str |
siliconcompiler.tools.verilator.cocotb_compile/CocotbCompileTask |
|
str |
verilator |
2.5.4.2.2. simulate/0#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_cocotb |
|
str |
siliconcompiler.tools.verilator.cocotb_exec/CocotbExecTask |
|
str |
verilator |
2.5.4.2.3. simulate/1#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_cocotb |
|
str |
siliconcompiler.tools.verilator.cocotb_exec/CocotbExecTask |
|
str |
verilator |
2.5.4.2.4. simulate/2#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_cocotb |
|
str |
siliconcompiler.tools.verilator.cocotb_exec/CocotbExecTask |
|
str |
verilator |
2.5.5. dvflow-xyce / 4#
A configurable constrained random stimulus DV flow.
The verification pipeline includes the following steps:
compile: RTL sources are compiled into an intermediate format.
sim: The compiled design is simulated with a generated testbench.
The dvflow can be parametrized using the ‘np’ parameter. Setting ‘np’ > 1 results in multiple independent verification pipelines being launched in parallel.
Supported tools are:
‘icarus’: Compiles and simulates with the Icarus Verilog simulator.
‘icarus-cocotb’: Compiles with Icarus and runs cocotb Python testbenches.
‘verilator’: Compiles and simulates with Verilator.
‘verilator-cocotb’: Compiles with Verilator and runs cocotb Python testbenches.
‘xyce’: Simulates a netlist with the Xyce circuit simulator.
‘xdm-xyce’: Converts a design to a Xyce-compatible format and simulates.
File: dvflow.py
2.5.5.1. Graph#
2.5.5.2. Nodes#
2.5.5.2.1. simulate/0#
Keypath |
Type |
Value |
str |
simulate |
|
str |
siliconcompiler.tools.xyce.simulate/SimulateTask |
|
str |
xyce |
2.5.5.2.2. simulate/1#
Keypath |
Type |
Value |
str |
simulate |
|
str |
siliconcompiler.tools.xyce.simulate/SimulateTask |
|
str |
xyce |
2.5.5.2.3. simulate/2#
Keypath |
Type |
Value |
str |
simulate |
|
str |
siliconcompiler.tools.xyce.simulate/SimulateTask |
|
str |
xyce |
2.5.6. dvflow-xdm-xyce / 5#
A configurable constrained random stimulus DV flow.
The verification pipeline includes the following steps:
compile: RTL sources are compiled into an intermediate format.
sim: The compiled design is simulated with a generated testbench.
The dvflow can be parametrized using the ‘np’ parameter. Setting ‘np’ > 1 results in multiple independent verification pipelines being launched in parallel.
Supported tools are:
‘icarus’: Compiles and simulates with the Icarus Verilog simulator.
‘icarus-cocotb’: Compiles with Icarus and runs cocotb Python testbenches.
‘verilator’: Compiles and simulates with Verilator.
‘verilator-cocotb’: Compiles with Verilator and runs cocotb Python testbenches.
‘xyce’: Simulates a netlist with the Xyce circuit simulator.
‘xdm-xyce’: Converts a design to a Xyce-compatible format and simulates.
File: dvflow.py
2.5.6.1. Graph#
2.5.6.2. Nodes#
2.5.6.2.1. compile/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.xdm.convert/ConvertTask |
|
str |
xdm |
2.5.6.2.2. simulate/0#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
simulate |
|
str |
siliconcompiler.tools.xyce.simulate/SimulateTask |
|
str |
xyce |
2.5.6.2.3. simulate/1#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
simulate |
|
str |
siliconcompiler.tools.xyce.simulate/SimulateTask |
|
str |
xyce |
2.5.6.2.4. simulate/2#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
simulate |
|
str |
siliconcompiler.tools.xyce.simulate/SimulateTask |
|
str |
xyce |
2.5.7. icarusdvflow#
A DV flow using the Icarus Verilog simulator.
File: dvflow.py
2.5.7.1. Graph#
2.5.7.2. Nodes#
2.5.7.2.1. compile/0#
Keypath |
Type |
Value |
str |
compile |
|
str |
siliconcompiler.tools.icarus.compile/CompileTask |
|
str |
icarus |
2.5.7.2.2. simulate/0#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_input |
|
str |
siliconcompiler.tools.execute.exec_input/ExecInputTask |
|
str |
execute |
2.5.7.2.3. simulate/1#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_input |
|
str |
siliconcompiler.tools.execute.exec_input/ExecInputTask |
|
str |
execute |
2.5.7.2.4. simulate/2#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_input |
|
str |
siliconcompiler.tools.execute.exec_input/ExecInputTask |
|
str |
execute |
2.5.8. icaruscocotbdvflow#
A DV flow using the Icarus Verilog simulator with cocotb testbenches.
File: dvflow.py
2.5.8.1. Graph#
2.5.8.2. Nodes#
2.5.8.2.1. compile/0#
Keypath |
Type |
Value |
str |
compile |
|
str |
siliconcompiler.tools.icarus.compile/CompileTask |
|
str |
icarus |
2.5.8.2.2. simulate/0#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_cocotb |
|
str |
siliconcompiler.tools.icarus.cocotb_exec/CocotbExecTask |
|
str |
icarus |
2.5.8.2.3. simulate/1#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_cocotb |
|
str |
siliconcompiler.tools.icarus.cocotb_exec/CocotbExecTask |
|
str |
icarus |
2.5.8.2.4. simulate/2#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_cocotb |
|
str |
siliconcompiler.tools.icarus.cocotb_exec/CocotbExecTask |
|
str |
icarus |
2.5.9. verilatordvflow#
A DV flow using the Verilator simulator.
File: dvflow.py
2.5.9.1. Graph#
2.5.9.2. Nodes#
2.5.9.2.1. compile/0#
Keypath |
Type |
Value |
str |
compile |
|
str |
siliconcompiler.tools.verilator.compile/CompileTask |
|
str |
verilator |
2.5.9.2.2. simulate/0#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_input |
|
str |
siliconcompiler.tools.execute.exec_input/ExecInputTask |
|
str |
execute |
2.5.9.2.3. simulate/1#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_input |
|
str |
siliconcompiler.tools.execute.exec_input/ExecInputTask |
|
str |
execute |
2.5.9.2.4. simulate/2#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_input |
|
str |
siliconcompiler.tools.execute.exec_input/ExecInputTask |
|
str |
execute |
2.5.10. verilatorcocotbdvflow#
A DV flow using the Verilator simulator with cocotb testbenches.
File: dvflow.py
2.5.10.1. Graph#
2.5.10.2. Nodes#
2.5.10.2.1. compile/0#
Keypath |
Type |
Value |
str |
cocotb_compile |
|
str |
siliconcompiler.tools.verilator.cocotb_compile/CocotbCompileTask |
|
str |
verilator |
2.5.10.2.2. simulate/0#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_cocotb |
|
str |
siliconcompiler.tools.verilator.cocotb_exec/CocotbExecTask |
|
str |
verilator |
2.5.10.2.3. simulate/1#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_cocotb |
|
str |
siliconcompiler.tools.verilator.cocotb_exec/CocotbExecTask |
|
str |
verilator |
2.5.10.2.4. simulate/2#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
exec_cocotb |
|
str |
siliconcompiler.tools.verilator.cocotb_exec/CocotbExecTask |
|
str |
verilator |
2.5.11. xycedvflow#
A DV flow using the Xyce circuit simulator.
File: dvflow.py
2.5.11.1. Graph#
2.5.11.2. Nodes#
2.5.11.2.1. simulate/0#
Keypath |
Type |
Value |
str |
simulate |
|
str |
siliconcompiler.tools.xyce.simulate/SimulateTask |
|
str |
xyce |
2.5.11.2.2. simulate/1#
Keypath |
Type |
Value |
str |
simulate |
|
str |
siliconcompiler.tools.xyce.simulate/SimulateTask |
|
str |
xyce |
2.5.11.2.3. simulate/2#
Keypath |
Type |
Value |
str |
simulate |
|
str |
siliconcompiler.tools.xyce.simulate/SimulateTask |
|
str |
xyce |
2.5.12. xdmxycedvflow#
A DV flow using the Xyce circuit simulator with XDM conversion.
File: dvflow.py
2.5.12.1. Graph#
2.5.12.2. Nodes#
2.5.12.2.1. compile/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.xdm.convert/ConvertTask |
|
str |
xdm |
2.5.12.2.2. simulate/0#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
simulate |
|
str |
siliconcompiler.tools.xyce.simulate/SimulateTask |
|
str |
xyce |
2.5.12.2.3. simulate/1#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
simulate |
|
str |
siliconcompiler.tools.xyce.simulate/SimulateTask |
|
str |
xyce |
2.5.12.2.4. simulate/2#
Keypath |
Type |
Value |
[(str,str)] |
('compile', '0') |
|
str |
simulate |
|
str |
siliconcompiler.tools.xyce.simulate/SimulateTask |
|
str |
xyce |
2.6. DRC Flows#
Flows for running design rule checking (DRC) signoff on a layout.
2.6.1. drcflow-klayout / 0#
A design rule check (DRC) flow.
This flow is designed to perform a DRC run on an input GDSII file using KLayout or Magic.
File: drcflow.py
2.6.1.1. Graph#
2.6.1.2. Nodes#
2.6.1.2.1. drc/0#
Keypath |
Type |
Value |
str |
drc |
|
str |
siliconcompiler.tools.klayout.drc/DRCTask |
|
str |
klayout |
2.6.2. drcflow-magic / 1#
A design rule check (DRC) flow.
This flow is designed to perform a DRC run on an input GDSII file using KLayout or Magic.
File: drcflow.py
2.6.2.1. Graph#
2.6.2.2. Nodes#
2.6.2.2.1. drc/0#
Keypath |
Type |
Value |
str |
drc |
|
str |
siliconcompiler.tools.magic.drc/DRCTask |
|
str |
magic |
2.6.3. klayoutdrcflow#
A KLayout-based design rule check (DRC) flow.
This flow is designed to perform a DRC run on an input GDSII file using KLayout.
File: drcflow.py
2.6.3.1. Graph#
2.6.3.2. Nodes#
2.6.3.2.1. drc/0#
Keypath |
Type |
Value |
str |
drc |
|
str |
siliconcompiler.tools.klayout.drc/DRCTask |
|
str |
klayout |
2.6.4. magicdrcflow#
A Magic-based design rule check (DRC) flow.
This flow is designed to perform a DRC run on an input GDSII file using Magic.
File: drcflow.py
2.6.4.1. Graph#
2.6.4.2. Nodes#
2.6.4.2.1. drc/0#
Keypath |
Type |
Value |
str |
drc |
|
str |
siliconcompiler.tools.magic.drc/DRCTask |
|
str |
magic |
2.7. LVS Flows#
Flows for running layout-versus-schematic (LVS) signoff on a layout.
2.7.1. magiclvsflow#
A flow for running LVS signoff on a GDS layout.
This flow performs a key physical verification step:
Layout Versus Schematic (LVS) checking using Netgen.
The LVS step first requires extracting a SPICE netlist from the layout, which is also handled by Magic.
File: lvsflow.py
2.7.1.1. Graph#
2.7.1.2. Nodes#
2.7.1.2.1. extspice/0#
Keypath |
Type |
Value |
str |
extspice |
|
str |
siliconcompiler.tools.magic.extspice/ExtractTask |
|
str |
magic |
2.7.1.2.2. lvs/0#
Keypath |
Type |
Value |
[(str,str)] |
('extspice', '0') |
|
str |
lvs |
|
str |
siliconcompiler.tools.netgen.lvs/LVSTask |
|
str |
netgen |
2.8. Signoff Flows#
Flows that combine the physical verification steps into a single signoff flow.
2.8.1. signoffflow#
A flow for running LVS/DRC signoff on a GDS layout.
This flow performs two key physical verification steps in parallel:
Design Rule Checking (DRC) using Magic.
Layout Versus Schematic (LVS) checking using Netgen.
The LVS step first requires extracting a SPICE netlist from the layout, which is also handled by Magic. A final ‘join’ step ensures that both DRC and LVS tasks must complete successfully for the flow to finish.
File: signoffflow.py
2.8.1.1. Graph#
2.8.1.2. Nodes#
2.8.1.2.1. drc/0#
Keypath |
Type |
Value |
str |
drc |
|
str |
siliconcompiler.tools.magic.drc/DRCTask |
|
str |
magic |
2.8.1.2.2. extspice/0#
Keypath |
Type |
Value |
str |
extspice |
|
str |
siliconcompiler.tools.magic.extspice/ExtractTask |
|
str |
magic |
2.8.1.2.3. lvs/0#
Keypath |
Type |
Value |
[(str,str)] |
('extspice', '0') |
|
str |
lvs |
|
str |
siliconcompiler.tools.netgen.lvs/LVSTask |
|
str |
netgen |
2.8.1.2.4. signoff/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
join |
|
str |
siliconcompiler.tools.builtin.join/JoinTask |
|
str |
builtin |
2.9. FPGA Flows#
Complete FPGA compilation flows. Each variant targets a different FPGA toolchain.
2.9.1. fpgaflow-nextpnr-verilog / 0#
An open-source FPGA flow using Yosys and NextPNR.
This flow is tailored for FPGAs supported by the NextPNR tool, which handles placement, routing, and bitstream generation in a single step.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
syn_fpga: Synthesize RTL into a device-specific netlist using Yosys.
- apr: Perform automatic place and route (APR) and generate the
bitstream using NextPNR.
File: fpgaflow.py
2.9.1.1. Graph#
2.9.1.2. Nodes#
2.9.1.2.1. elaborate/0#
Keypath |
Type |
Value |
str |
elaborate |
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
|
str |
slang |
2.9.1.2.2. syn_fpga/0#
Keypath |
Type |
Value |
[(str,str)] |
('elaborate', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
|
str |
yosys |
2.9.1.2.3. apr/0#
Keypath |
Type |
Value |
[(str,str)] |
('syn_fpga', '0') |
|
str |
apr |
|
str |
siliconcompiler.tools.nextpnr.apr/APRTask |
|
str |
nextpnr |
2.9.2. fpgaflow-nextpnr-systemverilog-sv2v / 1#
An open-source FPGA flow using Yosys and NextPNR.
This flow is tailored for FPGAs supported by the NextPNR tool, which handles placement, routing, and bitstream generation in a single step.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
syn_fpga: Synthesize RTL into a device-specific netlist using Yosys.
- apr: Perform automatic place and route (APR) and generate the
bitstream using NextPNR.
File: fpgaflow.py
2.9.2.1. Graph#
2.9.2.2. Nodes#
2.9.2.2.1. elaborate/0#
Keypath |
Type |
Value |
|
str |
elaborate |
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
|
str |
slang |
2.9.2.2.2. convert/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('elaborate', '0') |
|
str |
convert |
|
str |
siliconcompiler.tools.sv2v.convert/ConvertTask |
|
str |
sv2v |
2.9.2.2.3. syn_fpga/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
|
str |
yosys |
2.9.2.2.4. apr/0#
Keypath |
Type |
Value |
[(str,str)] |
('syn_fpga', '0') |
|
str |
apr |
|
|
str |
siliconcompiler.tools.nextpnr.apr/APRTask |
str |
nextpnr |
2.9.3. fpgaflow-nextpnr-chisel / 2#
An open-source FPGA flow using Yosys and NextPNR.
This flow is tailored for FPGAs supported by the NextPNR tool, which handles placement, routing, and bitstream generation in a single step.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
syn_fpga: Synthesize RTL into a device-specific netlist using Yosys.
- apr: Perform automatic place and route (APR) and generate the
bitstream using NextPNR.
File: fpgaflow.py
2.9.3.1. Graph#
2.9.3.2. Nodes#
2.9.3.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.chisel.convert/ConvertTask |
|
str |
chisel |
2.9.3.2.2. syn_fpga/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
|
str |
yosys |
2.9.3.2.3. apr/0#
Keypath |
Type |
Value |
[(str,str)] |
('syn_fpga', '0') |
|
str |
apr |
|
str |
siliconcompiler.tools.nextpnr.apr/APRTask |
|
str |
nextpnr |
2.9.4. fpgaflow-nextpnr-vhdl / 3#
An open-source FPGA flow using Yosys and NextPNR.
This flow is tailored for FPGAs supported by the NextPNR tool, which handles placement, routing, and bitstream generation in a single step.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
syn_fpga: Synthesize RTL into a device-specific netlist using Yosys.
- apr: Perform automatic place and route (APR) and generate the
bitstream using NextPNR.
File: fpgaflow.py
2.9.4.1. Graph#
2.9.4.2. Nodes#
2.9.4.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.ghdl.convert/ConvertTask |
|
str |
ghdl |
2.9.4.2.2. syn_fpga/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
|
str |
yosys |
2.9.4.2.3. apr/0#
Keypath |
Type |
Value |
[(str,str)] |
('syn_fpga', '0') |
|
str |
apr |
|
str |
siliconcompiler.tools.nextpnr.apr/APRTask |
|
str |
nextpnr |
2.9.5. fpgaflow-nextpnr-hls / 4#
An open-source FPGA flow using Yosys and NextPNR.
This flow is tailored for FPGAs supported by the NextPNR tool, which handles placement, routing, and bitstream generation in a single step.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
syn_fpga: Synthesize RTL into a device-specific netlist using Yosys.
- apr: Perform automatic place and route (APR) and generate the
bitstream using NextPNR.
File: fpgaflow.py
2.9.5.1. Graph#
2.9.5.2. Nodes#
2.9.5.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bambu.convert/ConvertTask |
|
str |
bambu |
2.9.5.2.2. syn_fpga/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
|
str |
yosys |
2.9.5.2.3. apr/0#
Keypath |
Type |
Value |
[(str,str)] |
('syn_fpga', '0') |
|
str |
apr |
|
str |
siliconcompiler.tools.nextpnr.apr/APRTask |
|
str |
nextpnr |
2.9.6. fpgaflow-nextpnr-bluespec / 5#
An open-source FPGA flow using Yosys and NextPNR.
This flow is tailored for FPGAs supported by the NextPNR tool, which handles placement, routing, and bitstream generation in a single step.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
syn_fpga: Synthesize RTL into a device-specific netlist using Yosys.
- apr: Perform automatic place and route (APR) and generate the
bitstream using NextPNR.
File: fpgaflow.py
2.9.6.1. Graph#
2.9.6.2. Nodes#
2.9.6.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bluespec.convert/ConvertTask |
|
str |
bluespec |
2.9.6.2.2. syn_fpga/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
|
str |
yosys |
2.9.6.2.3. apr/0#
Keypath |
Type |
Value |
[(str,str)] |
('syn_fpga', '0') |
|
str |
apr |
|
str |
siliconcompiler.tools.nextpnr.apr/APRTask |
|
str |
nextpnr |
2.9.7. fpgaflow-vpr-verilog / 0#
An open-source FPGA flow using Yosys, VPR, and GenFasm.
This flow is designed for academic and research FPGAs, utilizing VPR (Versatile Place and Route) for placement and routing.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
synthesis: Synthesize the elaborated design into a netlist using Yosys.
place: Place the netlist components onto the FPGA architecture using VPR.
route: Route the connections between placed components using VPR.
bitstream: Generate the final bitstream using GenFasm.
File: fpgaflow.py
2.9.7.1. Graph#
2.9.7.2. Nodes#
2.9.7.2.1. elaborate/0#
Keypath |
Type |
Value |
str |
elaborate |
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
|
str |
slang |
2.9.7.2.2. synthesis/0#
Keypath |
Type |
Value |
[(str,str)] |
('elaborate', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
|
str |
yosys |
2.9.7.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vpr.place/PlaceTask |
|
str |
vpr |
2.9.7.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vpr.route/RouteTask |
|
str |
vpr |
2.9.7.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
str |
siliconcompiler.tools.genfasm.bitstream/BitstreamTask |
|
str |
genfasm |
2.9.8. fpgaflow-vpr-systemverilog-sv2v / 1#
An open-source FPGA flow using Yosys, VPR, and GenFasm.
This flow is designed for academic and research FPGAs, utilizing VPR (Versatile Place and Route) for placement and routing.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
synthesis: Synthesize the elaborated design into a netlist using Yosys.
place: Place the netlist components onto the FPGA architecture using VPR.
route: Route the connections between placed components using VPR.
bitstream: Generate the final bitstream using GenFasm.
File: fpgaflow.py
2.9.8.1. Graph#
2.9.8.2. Nodes#
2.9.8.2.1. elaborate/0#
Keypath |
Type |
Value |
|
str |
elaborate |
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
|
str |
slang |
2.9.8.2.2. convert/0#
Keypath |
Type |
Value |
[(str,str)] |
('elaborate', '0') |
|
str |
convert |
|
|
str |
siliconcompiler.tools.sv2v.convert/ConvertTask |
str |
sv2v |
2.9.8.2.3. synthesis/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
|
str |
yosys |
2.9.8.2.4. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis', '0') |
|
str |
place |
|
|
str |
siliconcompiler.tools.vpr.place/PlaceTask |
str |
vpr |
2.9.8.2.5. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
|
str |
siliconcompiler.tools.vpr.route/RouteTask |
str |
vpr |
2.9.8.2.6. bitstream/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
str |
siliconcompiler.tools.genfasm.bitstream/BitstreamTask |
|
str |
genfasm |
2.9.9. fpgaflow-vpr-chisel / 2#
An open-source FPGA flow using Yosys, VPR, and GenFasm.
This flow is designed for academic and research FPGAs, utilizing VPR (Versatile Place and Route) for placement and routing.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
synthesis: Synthesize the elaborated design into a netlist using Yosys.
place: Place the netlist components onto the FPGA architecture using VPR.
route: Route the connections between placed components using VPR.
bitstream: Generate the final bitstream using GenFasm.
File: fpgaflow.py
2.9.9.1. Graph#
2.9.9.2. Nodes#
2.9.9.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.chisel.convert/ConvertTask |
|
str |
chisel |
2.9.9.2.2. synthesis/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
|
str |
yosys |
2.9.9.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vpr.place/PlaceTask |
|
str |
vpr |
2.9.9.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vpr.route/RouteTask |
|
str |
vpr |
2.9.9.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
str |
siliconcompiler.tools.genfasm.bitstream/BitstreamTask |
|
str |
genfasm |
2.9.10. fpgaflow-vpr-vhdl / 3#
An open-source FPGA flow using Yosys, VPR, and GenFasm.
This flow is designed for academic and research FPGAs, utilizing VPR (Versatile Place and Route) for placement and routing.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
synthesis: Synthesize the elaborated design into a netlist using Yosys.
place: Place the netlist components onto the FPGA architecture using VPR.
route: Route the connections between placed components using VPR.
bitstream: Generate the final bitstream using GenFasm.
File: fpgaflow.py
2.9.10.1. Graph#
2.9.10.2. Nodes#
2.9.10.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.ghdl.convert/ConvertTask |
|
str |
ghdl |
2.9.10.2.2. synthesis/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
|
str |
yosys |
2.9.10.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vpr.place/PlaceTask |
|
str |
vpr |
2.9.10.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vpr.route/RouteTask |
|
str |
vpr |
2.9.10.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
str |
siliconcompiler.tools.genfasm.bitstream/BitstreamTask |
|
str |
genfasm |
2.9.11. fpgaflow-vpr-hls / 4#
An open-source FPGA flow using Yosys, VPR, and GenFasm.
This flow is designed for academic and research FPGAs, utilizing VPR (Versatile Place and Route) for placement and routing.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
synthesis: Synthesize the elaborated design into a netlist using Yosys.
place: Place the netlist components onto the FPGA architecture using VPR.
route: Route the connections between placed components using VPR.
bitstream: Generate the final bitstream using GenFasm.
File: fpgaflow.py
2.9.11.1. Graph#
2.9.11.2. Nodes#
2.9.11.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bambu.convert/ConvertTask |
|
str |
bambu |
2.9.11.2.2. synthesis/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
|
str |
yosys |
2.9.11.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vpr.place/PlaceTask |
|
str |
vpr |
2.9.11.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vpr.route/RouteTask |
|
str |
vpr |
2.9.11.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
str |
siliconcompiler.tools.genfasm.bitstream/BitstreamTask |
|
str |
genfasm |
2.9.12. fpgaflow-vpr-bluespec / 5#
An open-source FPGA flow using Yosys, VPR, and GenFasm.
This flow is designed for academic and research FPGAs, utilizing VPR (Versatile Place and Route) for placement and routing.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
synthesis: Synthesize the elaborated design into a netlist using Yosys.
place: Place the netlist components onto the FPGA architecture using VPR.
route: Route the connections between placed components using VPR.
bitstream: Generate the final bitstream using GenFasm.
File: fpgaflow.py
2.9.12.1. Graph#
2.9.12.2. Nodes#
2.9.12.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bluespec.convert/ConvertTask |
|
str |
bluespec |
2.9.12.2.2. synthesis/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
|
str |
yosys |
2.9.12.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vpr.place/PlaceTask |
|
str |
vpr |
2.9.12.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vpr.route/RouteTask |
|
str |
vpr |
2.9.12.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
str |
siliconcompiler.tools.genfasm.bitstream/BitstreamTask |
|
str |
genfasm |
2.9.13. fpgaflow-vpr-open-sta-verilog / 0#
An open-source FPGA flow using Yosys, VPR, GenFasm, and OpenSTA.
This flow is designed for academic and research FPGAs, utilizing VPR (Versatile Place and Route) for placement and routing and OpenSTA for post-implementation timing analysis.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
synthesis: Synthesize the elaborated design into a netlist using Yosys.
place: Place the netlist components onto the FPGA architecture using VPR.
route: Route the connections between placed components using VPR.
bitstream: Generate the final bitstream using GenFasm.
timing: Perform post-implementation static timing analysis of the design.
File: fpgaflow.py
2.9.13.1. Graph#
2.9.13.2. Nodes#
2.9.13.2.1. elaborate/0#
Keypath |
Type |
Value |
str |
elaborate |
|
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
str |
slang |
2.9.13.2.2. synthesis/0#
Keypath |
Type |
Value |
[(str,str)] |
('elaborate', '0') |
|
str |
syn_fpga |
|
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
str |
yosys |
2.9.13.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis', '0') |
|
str |
place |
|
|
str |
siliconcompiler.tools.vpr.place/PlaceTask |
str |
vpr |
2.9.13.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
|
str |
siliconcompiler.tools.vpr.route/RouteTask |
str |
vpr |
2.9.13.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
|
str |
siliconcompiler.tools.genfasm.bitstream/BitstreamTask |
str |
genfasm |
2.9.13.2.6. timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
fpga_timing |
|
|
str |
siliconcompiler.tools.opensta.timing/FPGATimingTask |
str |
opensta |
2.9.14. fpgaflow-vpr-open-sta-systemverilog-sv2v / 1#
An open-source FPGA flow using Yosys, VPR, GenFasm, and OpenSTA.
This flow is designed for academic and research FPGAs, utilizing VPR (Versatile Place and Route) for placement and routing and OpenSTA for post-implementation timing analysis.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
synthesis: Synthesize the elaborated design into a netlist using Yosys.
place: Place the netlist components onto the FPGA architecture using VPR.
route: Route the connections between placed components using VPR.
bitstream: Generate the final bitstream using GenFasm.
timing: Perform post-implementation static timing analysis of the design.
File: fpgaflow.py
2.9.14.1. Graph#
2.9.14.2. Nodes#
2.9.14.2.1. elaborate/0#
Keypath |
Type |
Value |
|
str |
elaborate |
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
|
str |
slang |
2.9.14.2.2. convert/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('elaborate', '0') |
|
str |
convert |
|
str |
siliconcompiler.tools.sv2v.convert/ConvertTask |
|
str |
sv2v |
2.9.14.2.3. synthesis/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
|
str |
yosys |
2.9.14.2.4. place/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('synthesis', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vpr.place/PlaceTask |
|
str |
vpr |
2.9.14.2.5. route/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vpr.route/RouteTask |
|
str |
vpr |
2.9.14.2.6. bitstream/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
str |
siliconcompiler.tools.genfasm.bitstream/BitstreamTask |
|
str |
genfasm |
2.9.14.2.7. timing/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('route', '0') |
|
str |
fpga_timing |
|
str |
siliconcompiler.tools.opensta.timing/FPGATimingTask |
|
str |
opensta |
2.9.15. fpgaflow-vpr-open-sta-chisel / 2#
An open-source FPGA flow using Yosys, VPR, GenFasm, and OpenSTA.
This flow is designed for academic and research FPGAs, utilizing VPR (Versatile Place and Route) for placement and routing and OpenSTA for post-implementation timing analysis.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
synthesis: Synthesize the elaborated design into a netlist using Yosys.
place: Place the netlist components onto the FPGA architecture using VPR.
route: Route the connections between placed components using VPR.
bitstream: Generate the final bitstream using GenFasm.
timing: Perform post-implementation static timing analysis of the design.
File: fpgaflow.py
2.9.15.1. Graph#
2.9.15.2. Nodes#
2.9.15.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
|
str |
siliconcompiler.tools.chisel.convert/ConvertTask |
str |
chisel |
2.9.15.2.2. synthesis/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
str |
yosys |
2.9.15.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vpr.place/PlaceTask |
|
str |
vpr |
2.9.15.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vpr.route/RouteTask |
|
str |
vpr |
2.9.15.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
|
str |
siliconcompiler.tools.genfasm.bitstream/BitstreamTask |
str |
genfasm |
2.9.15.2.6. timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
fpga_timing |
|
|
str |
siliconcompiler.tools.opensta.timing/FPGATimingTask |
str |
opensta |
2.9.16. fpgaflow-vpr-open-sta-vhdl / 3#
An open-source FPGA flow using Yosys, VPR, GenFasm, and OpenSTA.
This flow is designed for academic and research FPGAs, utilizing VPR (Versatile Place and Route) for placement and routing and OpenSTA for post-implementation timing analysis.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
synthesis: Synthesize the elaborated design into a netlist using Yosys.
place: Place the netlist components onto the FPGA architecture using VPR.
route: Route the connections between placed components using VPR.
bitstream: Generate the final bitstream using GenFasm.
timing: Perform post-implementation static timing analysis of the design.
File: fpgaflow.py
2.9.16.1. Graph#
2.9.16.2. Nodes#
2.9.16.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.ghdl.convert/ConvertTask |
|
str |
ghdl |
2.9.16.2.2. synthesis/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
str |
yosys |
2.9.16.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vpr.place/PlaceTask |
|
str |
vpr |
2.9.16.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vpr.route/RouteTask |
|
str |
vpr |
2.9.16.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
|
str |
siliconcompiler.tools.genfasm.bitstream/BitstreamTask |
str |
genfasm |
2.9.16.2.6. timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
fpga_timing |
|
str |
siliconcompiler.tools.opensta.timing/FPGATimingTask |
|
str |
opensta |
2.9.17. fpgaflow-vpr-open-sta-hls / 4#
An open-source FPGA flow using Yosys, VPR, GenFasm, and OpenSTA.
This flow is designed for academic and research FPGAs, utilizing VPR (Versatile Place and Route) for placement and routing and OpenSTA for post-implementation timing analysis.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
synthesis: Synthesize the elaborated design into a netlist using Yosys.
place: Place the netlist components onto the FPGA architecture using VPR.
route: Route the connections between placed components using VPR.
bitstream: Generate the final bitstream using GenFasm.
timing: Perform post-implementation static timing analysis of the design.
File: fpgaflow.py
2.9.17.1. Graph#
2.9.17.2. Nodes#
2.9.17.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bambu.convert/ConvertTask |
|
str |
bambu |
2.9.17.2.2. synthesis/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
str |
yosys |
2.9.17.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vpr.place/PlaceTask |
|
str |
vpr |
2.9.17.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vpr.route/RouteTask |
|
str |
vpr |
2.9.17.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
|
str |
siliconcompiler.tools.genfasm.bitstream/BitstreamTask |
str |
genfasm |
2.9.17.2.6. timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
fpga_timing |
|
str |
siliconcompiler.tools.opensta.timing/FPGATimingTask |
|
str |
opensta |
2.9.18. fpgaflow-vpr-open-sta-bluespec / 5#
An open-source FPGA flow using Yosys, VPR, GenFasm, and OpenSTA.
This flow is designed for academic and research FPGAs, utilizing VPR (Versatile Place and Route) for placement and routing and OpenSTA for post-implementation timing analysis.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
synthesis: Synthesize the elaborated design into a netlist using Yosys.
place: Place the netlist components onto the FPGA architecture using VPR.
route: Route the connections between placed components using VPR.
bitstream: Generate the final bitstream using GenFasm.
timing: Perform post-implementation static timing analysis of the design.
File: fpgaflow.py
2.9.18.1. Graph#
2.9.18.2. Nodes#
2.9.18.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
|
str |
siliconcompiler.tools.bluespec.convert/ConvertTask |
str |
bluespec |
2.9.18.2.2. synthesis/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('convert', '0') |
str |
syn_fpga |
|
|
str |
siliconcompiler.tools.yosys.syn_fpga/FPGASynthesis |
str |
yosys |
2.9.18.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('synthesis', '0') |
|
str |
place |
|
|
str |
siliconcompiler.tools.vpr.place/PlaceTask |
str |
vpr |
2.9.18.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
|
str |
siliconcompiler.tools.vpr.route/RouteTask |
str |
vpr |
2.9.18.2.5. bitstream/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('route', '0') |
str |
bitstream |
|
|
str |
siliconcompiler.tools.genfasm.bitstream/BitstreamTask |
str |
genfasm |
2.9.18.2.6. timing/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
fpga_timing |
|
|
str |
siliconcompiler.tools.opensta.timing/FPGATimingTask |
str |
opensta |
2.9.19. fpgaflow-xilinx-verilog / 0#
An FPGA compilation flow targeting Xilinx devices using Vivado.
This flow uses the commercial Vivado toolchain for synthesis, placement, routing, and bitstream generation.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
syn_fpga: Synthesize RTL into a device-specific netlist.
place: Place the synthesized netlist onto the FPGA fabric.
route: Route the connections between placed components.
bitstream: Generate the final bitstream for device programming.
File: fpgaflow.py
2.9.19.1. Graph#
2.9.19.2. Nodes#
2.9.19.2.1. elaborate/0#
Keypath |
Type |
Value |
str |
elaborate |
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
|
str |
slang |
2.9.19.2.2. syn_fpga/0#
Keypath |
Type |
Value |
[(str,str)] |
('elaborate', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.vivado.syn_fpga/SynthesisTask |
|
str |
vivado |
2.9.19.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('syn_fpga', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vivado.place/PlaceTask |
|
str |
vivado |
2.9.19.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vivado.route/RouteTask |
|
str |
vivado |
2.9.19.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
str |
siliconcompiler.tools.vivado.bitstream/BitstreamTask |
|
str |
vivado |
2.9.20. fpgaflow-xilinx-systemverilog-sv2v / 1#
An FPGA compilation flow targeting Xilinx devices using Vivado.
This flow uses the commercial Vivado toolchain for synthesis, placement, routing, and bitstream generation.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
syn_fpga: Synthesize RTL into a device-specific netlist.
place: Place the synthesized netlist onto the FPGA fabric.
route: Route the connections between placed components.
bitstream: Generate the final bitstream for device programming.
File: fpgaflow.py
2.9.20.1. Graph#
2.9.20.2. Nodes#
2.9.20.2.1. elaborate/0#
Keypath |
Type |
Value |
|
str |
elaborate |
|
str |
siliconcompiler.tools.slang.elaborate/Elaborate |
|
str |
slang |
2.9.20.2.2. convert/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('elaborate', '0') |
|
str |
convert |
|
str |
siliconcompiler.tools.sv2v.convert/ConvertTask |
|
str |
sv2v |
2.9.20.2.3. syn_fpga/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.vivado.syn_fpga/SynthesisTask |
|
str |
vivado |
2.9.20.2.4. place/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('syn_fpga', '0') |
str |
place |
|
|
str |
siliconcompiler.tools.vivado.place/PlaceTask |
str |
vivado |
2.9.20.2.5. route/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('place', '0') |
str |
route |
|
|
str |
siliconcompiler.tools.vivado.route/RouteTask |
str |
vivado |
2.9.20.2.6. bitstream/0#
Keypath |
Type |
Value |
|
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
str |
siliconcompiler.tools.vivado.bitstream/BitstreamTask |
|
str |
vivado |
2.9.21. fpgaflow-xilinx-chisel / 2#
An FPGA compilation flow targeting Xilinx devices using Vivado.
This flow uses the commercial Vivado toolchain for synthesis, placement, routing, and bitstream generation.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
syn_fpga: Synthesize RTL into a device-specific netlist.
place: Place the synthesized netlist onto the FPGA fabric.
route: Route the connections between placed components.
bitstream: Generate the final bitstream for device programming.
File: fpgaflow.py
2.9.21.1. Graph#
2.9.21.2. Nodes#
2.9.21.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.chisel.convert/ConvertTask |
|
str |
chisel |
2.9.21.2.2. syn_fpga/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.vivado.syn_fpga/SynthesisTask |
|
str |
vivado |
2.9.21.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('syn_fpga', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vivado.place/PlaceTask |
|
str |
vivado |
2.9.21.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vivado.route/RouteTask |
|
str |
vivado |
2.9.21.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
str |
siliconcompiler.tools.vivado.bitstream/BitstreamTask |
|
str |
vivado |
2.9.22. fpgaflow-xilinx-vhdl / 3#
An FPGA compilation flow targeting Xilinx devices using Vivado.
This flow uses the commercial Vivado toolchain for synthesis, placement, routing, and bitstream generation.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
syn_fpga: Synthesize RTL into a device-specific netlist.
place: Place the synthesized netlist onto the FPGA fabric.
route: Route the connections between placed components.
bitstream: Generate the final bitstream for device programming.
File: fpgaflow.py
2.9.22.1. Graph#
2.9.22.2. Nodes#
2.9.22.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.ghdl.convert/ConvertTask |
|
str |
ghdl |
2.9.22.2.2. syn_fpga/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.vivado.syn_fpga/SynthesisTask |
|
str |
vivado |
2.9.22.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('syn_fpga', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vivado.place/PlaceTask |
|
str |
vivado |
2.9.22.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vivado.route/RouteTask |
|
str |
vivado |
2.9.22.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
str |
siliconcompiler.tools.vivado.bitstream/BitstreamTask |
|
str |
vivado |
2.9.23. fpgaflow-xilinx-hls / 4#
An FPGA compilation flow targeting Xilinx devices using Vivado.
This flow uses the commercial Vivado toolchain for synthesis, placement, routing, and bitstream generation.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
syn_fpga: Synthesize RTL into a device-specific netlist.
place: Place the synthesized netlist onto the FPGA fabric.
route: Route the connections between placed components.
bitstream: Generate the final bitstream for device programming.
File: fpgaflow.py
2.9.23.1. Graph#
2.9.23.2. Nodes#
2.9.23.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bambu.convert/ConvertTask |
|
str |
bambu |
2.9.23.2.2. syn_fpga/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.vivado.syn_fpga/SynthesisTask |
|
str |
vivado |
2.9.23.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('syn_fpga', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vivado.place/PlaceTask |
|
str |
vivado |
2.9.23.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vivado.route/RouteTask |
|
str |
vivado |
2.9.23.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
str |
siliconcompiler.tools.vivado.bitstream/BitstreamTask |
|
str |
vivado |
2.9.24. fpgaflow-xilinx-bluespec / 5#
An FPGA compilation flow targeting Xilinx devices using Vivado.
This flow uses the commercial Vivado toolchain for synthesis, placement, routing, and bitstream generation.
The flow consists of the following steps:
elaborate: Elaborate the RTL design from sources.
syn_fpga: Synthesize RTL into a device-specific netlist.
place: Place the synthesized netlist onto the FPGA fabric.
route: Route the connections between placed components.
bitstream: Generate the final bitstream for device programming.
File: fpgaflow.py
2.9.24.1. Graph#
2.9.24.2. Nodes#
2.9.24.2.1. convert/0#
Keypath |
Type |
Value |
str |
convert |
|
str |
siliconcompiler.tools.bluespec.convert/ConvertTask |
|
str |
bluespec |
2.9.24.2.2. syn_fpga/0#
Keypath |
Type |
Value |
[(str,str)] |
('convert', '0') |
|
str |
syn_fpga |
|
str |
siliconcompiler.tools.vivado.syn_fpga/SynthesisTask |
|
str |
vivado |
2.9.24.2.3. place/0#
Keypath |
Type |
Value |
[(str,str)] |
('syn_fpga', '0') |
|
str |
place |
|
str |
siliconcompiler.tools.vivado.place/PlaceTask |
|
str |
vivado |
2.9.24.2.4. route/0#
Keypath |
Type |
Value |
[(str,str)] |
('place', '0') |
|
str |
route |
|
str |
siliconcompiler.tools.vivado.route/RouteTask |
|
str |
vivado |
2.9.24.2.5. bitstream/0#
Keypath |
Type |
Value |
[(str,str)] |
('route', '0') |
|
str |
bitstream |
|
str |
siliconcompiler.tools.vivado.bitstream/BitstreamTask |
|
str |
vivado |
2.10. Utility Flows#
Supporting flows for screenshots, format conversion, parasitic extraction, and interposer assembly.
2.10.1. showflow#
A minimal flow to display a design file using its associated viewer.
This flow is automatically generated and consists of a single node that runs a specific ‘show’ or ‘screenshot’ task for a given file format (e.g., GDS, DEF).
File: showflow.py
2.10.1.1. Graph#
2.10.1.2. Nodes#
2.10.1.2.1. show/0#
Keypath |
Type |
Value |
str |
show |
|
str |
siliconcompiler.tools.klayout.show/ShowTask |
|
str |
klayout |
2.10.2. screenshotflow / 0#
A high resolution screenshot flow.
This flow is designed to generate a high resolution design image from a GDS or OAS file by preparing the layout, taking tiled screenshots, and merging them into a single image.
File: highresscreenshotflow.py
2.10.2.1. Graph#
2.10.2.2. Nodes#
2.10.2.2.1. import/0#
Keypath |
Type |
Value |
str |
importfiles |
|
str |
siliconcompiler.tools.builtin.importfiles/ImportFilesTask |
|
str |
builtin |
2.10.2.2.2. prepare/0#
Keypath |
Type |
Value |
[(str,str)] |
('import', '0') |
|
str |
operations |
|
str |
siliconcompiler.tools.klayout.operations/OperationsTask |
|
str |
klayout |
2.10.2.2.3. screenshot/0#
Keypath |
Type |
Value |
[(str,str)] |
('prepare', '0') |
|
str |
screenshot |
|
str |
siliconcompiler.tools.klayout.screenshot/ScreenshotTask |
|
str |
klayout |
2.10.2.2.4. merge/0#
Keypath |
Type |
Value |
[(str,str)] |
('screenshot', '0') |
|
str |
tile |
|
str |
siliconcompiler.tools.montage.tile/TileTask |
|
str |
montage |
2.10.3. screenshotflow / 1#
A high resolution screenshot flow.
This flow is designed to generate a high resolution design image from a GDS or OAS file by preparing the layout, taking tiled screenshots, and merging them into a single image.
File: highresscreenshotflow.py
2.10.3.1. Graph#
2.10.3.2. Nodes#
2.10.3.2.1. import/0#
Keypath |
Type |
Value |
str |
importfiles |
|
str |
siliconcompiler.tools.builtin.importfiles/ImportFilesTask |
|
str |
builtin |
2.10.3.2.2. screenshot/0#
Keypath |
Type |
Value |
[(str,str)] |
('import', '0') |
|
str |
screenshot |
|
str |
siliconcompiler.tools.klayout.screenshot/ScreenshotTask |
|
str |
klayout |
2.10.3.2.3. merge/0#
Keypath |
Type |
Value |
[(str,str)] |
('screenshot', '0') |
|
str |
tile |
|
str |
siliconcompiler.tools.montage.tile/TileTask |
|
str |
montage |
2.10.4. img2streamflow / 0#
An image-to-stream flow with DRC verification.
This flow converts an image file (PNG/JPG) to a GDSII or OASIS stream using KLayout, then runs a design rule check on the resulting layout.
File: img2streamflow.py
2.10.4.1. Graph#
2.10.4.2. Nodes#
2.10.4.2.1. image/0#
Keypath |
Type |
Value |
str |
image2stream |
|
str |
siliconcompiler.tools.klayout.img2stream/Img2StreamTask |
|
str |
klayout |
2.10.5. img2streamflow-klayout / 1#
An image-to-stream flow with DRC verification.
This flow converts an image file (PNG/JPG) to a GDSII or OASIS stream using KLayout, then runs a design rule check on the resulting layout.
File: img2streamflow.py
2.10.5.1. Graph#
2.10.5.2. Nodes#
2.10.5.2.1. image/0#
Keypath |
Type |
Value |
str |
image2stream |
|
str |
siliconcompiler.tools.klayout.img2stream/Img2StreamTask |
|
str |
klayout |
2.10.5.2.2. drc/0#
Keypath |
Type |
Value |
[(str,str)] |
('image', '0') |
|
str |
drc |
|
str |
siliconcompiler.tools.klayout.drc/DRCTask |
|
str |
klayout |
2.10.6. img2streamflow-magic / 2#
An image-to-stream flow with DRC verification.
This flow converts an image file (PNG/JPG) to a GDSII or OASIS stream using KLayout, then runs a design rule check on the resulting layout.
File: img2streamflow.py
2.10.6.1. Graph#
2.10.6.2. Nodes#
2.10.6.2.1. image/0#
Keypath |
Type |
Value |
str |
image2stream |
|
str |
siliconcompiler.tools.klayout.img2stream/Img2StreamTask |
|
str |
klayout |
2.10.6.2.2. drc/0#
Keypath |
Type |
Value |
[(str,str)] |
('image', '0') |
|
str |
drc |
|
str |
siliconcompiler.tools.magic.drc/DRCTask |
|
str |
magic |
2.10.7. generate_rcx / 0#
A flow to generate OpenRCX parasitic extraction decks for OpenROAD.
This flow automates the process of characterizing a parasitic extraction tool to generate the necessary configuration files (RCX decks) for OpenROAD’s built-in OpenRCX engine. It works by comparing the output of a third-party “golden” extraction tool against OpenRCX’s results and calibrating OpenRCX accordingly.
The flow consists of the following main steps for each specified corner:
bench: A benchmark design with simple structures is created.
- pex: A user-provided third-party PEX tool is run on the benchmark
to generate a “golden” SPEF file.
- extract: The golden SPEF is used to generate a calibrated OpenRCX
deck.
File: generate_openroad_rcx.py
2.10.7.1. Graph#
2.10.7.2. Nodes#
2.10.7.2.1. bench/0#
Keypath |
Type |
Value |
str |
rcx_bench |
|
str |
siliconcompiler.tools.openroad.rcx_bench/ORXBenchTask |
|
str |
openroad |
2.10.7.2.2. pex/0#
Keypath |
Type |
Value |
[(str,str)] |
('bench', '0') |
|
str |
nop |
|
str |
siliconcompiler.tools.builtin.nop/NOPTask |
|
str |
builtin |
2.10.7.2.3. pex/1#
Keypath |
Type |
Value |
[(str,str)] |
('bench', '0') |
|
str |
nop |
|
str |
siliconcompiler.tools.builtin.nop/NOPTask |
|
str |
builtin |
2.10.7.2.4. pex/2#
Keypath |
Type |
Value |
[(str,str)] |
('bench', '0') |
|
str |
nop |
|
str |
siliconcompiler.tools.builtin.nop/NOPTask |
|
str |
builtin |
2.10.7.2.5. extract/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
rcx_extract |
|
str |
siliconcompiler.tools.openroad.rcx_extract/ORXExtractTask |
|
str |
openroad |
2.10.7.2.6. extract/1#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
rcx_extract |
|
str |
siliconcompiler.tools.openroad.rcx_extract/ORXExtractTask |
|
str |
openroad |
2.10.7.2.7. extract/2#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
rcx_extract |
|
str |
siliconcompiler.tools.openroad.rcx_extract/ORXExtractTask |
|
str |
openroad |
2.10.8. generate_rcx / 1#
A flow to generate OpenRCX parasitic extraction decks for OpenROAD.
This flow automates the process of characterizing a parasitic extraction tool to generate the necessary configuration files (RCX decks) for OpenROAD’s built-in OpenRCX engine. It works by comparing the output of a third-party “golden” extraction tool against OpenRCX’s results and calibrating OpenRCX accordingly.
The flow consists of the following main steps for each specified corner:
bench: A benchmark design with simple structures is created.
- pex: A user-provided third-party PEX tool is run on the benchmark
to generate a “golden” SPEF file.
- extract: The golden SPEF is used to generate a calibrated OpenRCX
deck.
File: generate_openroad_rcx.py
2.10.8.1. Graph#
2.10.8.2. Nodes#
2.10.8.2.1. bench/0#
Keypath |
Type |
Value |
str |
rcx_bench |
|
str |
siliconcompiler.tools.openroad.rcx_bench/ORXBenchTask |
|
str |
openroad |
2.10.8.2.2. pex/0#
Keypath |
Type |
Value |
[(str,str)] |
('bench', '0') |
|
str |
nop |
|
str |
siliconcompiler.tools.builtin.nop/NOPTask |
|
str |
builtin |
2.10.8.2.3. extract/0#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
rcx_extract |
|
str |
siliconcompiler.tools.openroad.rcx_extract/ORXExtractTask |
|
str |
openroad |
2.10.8.2.4. pex.wait/1#
Keypath |
Type |
Value |
[(str,str)] |
('pex', '0') |
|
str |
wait |
|
str |
siliconcompiler.tools.builtin.wait/Wait |
|
str |
builtin |
2.10.8.2.5. pex/1#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
nop |
|
str |
siliconcompiler.tools.builtin.nop/NOPTask |
|
str |
builtin |
2.10.8.2.6. extract/1#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
rcx_extract |
|
str |
siliconcompiler.tools.openroad.rcx_extract/ORXExtractTask |
|
str |
openroad |
2.10.8.2.7. pex.wait/2#
Keypath |
Type |
Value |
[(str,str)] |
('pex', '1') |
|
str |
wait |
|
str |
siliconcompiler.tools.builtin.wait/Wait |
|
str |
builtin |
2.10.8.2.8. pex/2#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
nop |
|
str |
siliconcompiler.tools.builtin.nop/NOPTask |
|
str |
builtin |
2.10.8.2.9. extract/2#
Keypath |
Type |
Value |
[(str,str)] |
|
|
str |
rcx_extract |
|
str |
siliconcompiler.tools.openroad.rcx_extract/ORXExtractTask |
|
str |
openroad |
2.10.9. interposerflow#
A flow to perform Redistribution Layer (RDL) routing and generate a GDS.
This flow is designed for creating interposers or other simple routing layers. It uses OpenROAD for RDL routing and KLayout to export the final layout to a GDSII file.
The flow consists of the following steps:
rdlroute: Performs RDL routing on the input design.
write_gds: Exports the routed design to a GDSII file.
File: interposerflow.py
2.10.9.1. Graph#
2.10.9.2. Nodes#
2.10.9.2.1. rdlroute/0#
Keypath |
Type |
Value |
str |
rdlroute |
|
str |
siliconcompiler.tools.openroad.rdlroute/RDLRouteTask |
|
str |
openroad |
2.10.9.2.2. write_gds/0#
Keypath |
Type |
Value |
[(str,str)] |
('rdlroute', '0') |
|
str |
export |
|
str |
siliconcompiler.tools.klayout.export/ExportTask |
|
str |
klayout |