mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-26 18:45:34 +00:00
Docs: some restructure of advanced section
- Filling out index descriptions for `using_yosys` and `using_yosys/synthesis`. - To discourage skipping over these index pages, the toctree in `using_yosys/index` is hidden and instead has inline links to the two subsections. - Tidying todos. - Moves technology mapping to `techmap_synth`, leaving the techmap by example in the internals section. `yosys_flows` gets split up, with the coarse-grain intro replaced by `synthesis/index`, the extract pass moving to `synthesis/extract` and model checking to `more_scripting/model_checking`.
This commit is contained in:
parent
4582ab59da
commit
e2e7065590
10 changed files with 259 additions and 273 deletions
|
@ -1,7 +1,24 @@
|
|||
Synthesis in detail
|
||||
-------------------
|
||||
|
||||
.. todo:: brief overview for the synthesis index
|
||||
Synthesis can generally be broken down into coarse-grain synthesis, and
|
||||
fine-grain synthesis. We saw this in :doc:`/getting_started/example_synth`
|
||||
where a design was loaded and elaborated and then went through a series of
|
||||
coarse-grain optimizations before being mapped to hard blocks and fine-grain
|
||||
cells. Most commands in Yosys will target either coarse-grain representation or
|
||||
fine-grain representation, with only a select few compatible with both states.
|
||||
|
||||
Commands such as :cmd:ref:`proc`, :cmd:ref:`fsm`, and :cmd:ref:`memory` rely on
|
||||
the additional information in the coarse-grain representation, along with a
|
||||
number of optimizations such as :cmd:ref:`wreduce`, :cmd:ref:`share`, and
|
||||
:cmd:ref:`alumacc`. :cmd:ref:`opt` provides optimizations which are useful in
|
||||
both states, while :cmd:ref:`techmap` is used to convert coarse-grain cells
|
||||
to the corresponding fine-grain representation.
|
||||
|
||||
Single-bit cells (logic gates, FFs) as well as LUTs, half-adders, and
|
||||
full-adders make up the bulk of the fine-grain representation and are necessary
|
||||
for commands such as :cmd:ref:`abc`\ /:cmd:ref:`abc9`, :cmd:ref:`simplemap`,
|
||||
:cmd:ref:`dfflegalize`, and :cmd:ref:`memory_map`.
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 3
|
||||
|
@ -12,6 +29,7 @@ Synthesis in detail
|
|||
memory
|
||||
opt
|
||||
techmap_synth
|
||||
extract
|
||||
abc
|
||||
cell_libs
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue