Merge branch 'master' of https://github.com/lnis-uofu/OpenFPGA into upstream
This commit is contained in:
commit
b8d5920529
|
@ -185,6 +185,8 @@ texinfo_documents = [
|
|||
]
|
||||
|
||||
|
||||
bibtex_bibfiles = ["z_reference.bib"]
|
||||
|
||||
# -- Options for Epub output -------------------------------------------------
|
||||
|
||||
# Bibliographic Dublin Core info.
|
||||
|
|
|
@ -105,4 +105,16 @@ Release Docker Images
|
|||
|
||||
This is a bleeding-edge release from the current master branch of OpenFPGA.
|
||||
It is updated automatically whenever there is activity on the master branch.
|
||||
Due to high development activity, we recommend the user to use the bleeding-edge version to get access to all new features and report an issue in case there are any bugs.
|
||||
Due to high development activity, we recommend the user to use the bleeding-edge version to get access to all new features and report an issue in case there are any bugs.
|
||||
|
||||
|
||||
CI after cloning repository
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
If you clone the repository the CI setup will still function, except the based images are still pullled from "lnis-uofu" repsitory and the master branch
|
||||
of cloned repo will not push final docker image to any repository .
|
||||
|
||||
**In case you want to host your own copies of OpenFPGA base images** and final release create a githib secret variable with name ``DOCKER_REPO`` and set it to ``true``. This will make ci script to download base images from your own repo pakcages, and upload final realse to the same.
|
||||
|
||||
**If you don not want to use docker images based regression test** and like to compile all the bianries for each CI run. You can set ``IGNORE_DOCKER_TEST`` secrete variable to ``true``.
|
||||
|
||||
.. note:: Once you add ``DOCKER_REPO`` variable, you need to genrerate base images. To do this trigger mannual workflow ``Build docker CI images``
|
||||
|
|
|
@ -210,8 +210,8 @@
|
|||
<design_technology type="cmos"/>
|
||||
<input_buffer exist="true" circuit_model_name="INVTX1"/>
|
||||
<output_buffer exist="true" circuit_model_name="INVTX1"/>
|
||||
<port type="input" prefix="A" lib_name="A" size="36"/>
|
||||
<port type="input" prefix="B" lib_name="B" size="36"/>
|
||||
<port type="input" prefix="A" lib_name="a" size="36"/>
|
||||
<port type="input" prefix="B" lib_name="b" size="36"/>
|
||||
<port type="output" prefix="Y" lib_name="out" size="72"/>
|
||||
<!-- As a fracturable multiplier, it requires 2 configuration bits to operate in 4 different modes -->
|
||||
<port type="sram" prefix="mode" size="2" mode_select="true" circuit_model_name="DFFR" default_val="1"/>
|
||||
|
|
|
@ -211,8 +211,8 @@
|
|||
<design_technology type="cmos"/>
|
||||
<input_buffer exist="true" circuit_model_name="INVTX1"/>
|
||||
<output_buffer exist="true" circuit_model_name="INVTX1"/>
|
||||
<port type="input" prefix="A" lib_name="A" size="36"/>
|
||||
<port type="input" prefix="B" lib_name="B" size="36"/>
|
||||
<port type="input" prefix="A" lib_name="a" size="36"/>
|
||||
<port type="input" prefix="B" lib_name="b" size="36"/>
|
||||
<port type="output" prefix="Y" lib_name="out" size="72"/>
|
||||
<!-- As a fracturable multiplier, it requires 2 configuration bits to operate in 4 different modes -->
|
||||
<port type="sram" prefix="mode" size="2" mode_select="true" circuit_model_name="DFFR" default_val="1"/>
|
||||
|
|
|
@ -198,9 +198,9 @@
|
|||
<design_technology type="cmos"/>
|
||||
<input_buffer exist="true" circuit_model_name="INVTX1"/>
|
||||
<output_buffer exist="true" circuit_model_name="INVTX1"/>
|
||||
<port type="input" prefix="a" lib_name="A" size="36"/>
|
||||
<port type="input" prefix="b" lib_name="B" size="36"/>
|
||||
<port type="output" prefix="out" size="72"/>
|
||||
<port type="input" prefix="a" lib_name="a" size="36"/>
|
||||
<port type="input" prefix="b" lib_name="b" size="36"/>
|
||||
<port type="output" prefix="out" lib_name="out" size="72"/>
|
||||
<!-- As a fracturable multiplier, it requires 2 configuration bits to operate in 4 different modes -->
|
||||
<port type="sram" prefix="mode" size="2" mode_select="true" circuit_model_name="DFFR" default_val="1"/>
|
||||
</circuit_model>
|
||||
|
|
|
@ -198,9 +198,9 @@
|
|||
<design_technology type="cmos"/>
|
||||
<input_buffer exist="true" circuit_model_name="INVTX1"/>
|
||||
<output_buffer exist="true" circuit_model_name="INVTX1"/>
|
||||
<port type="input" prefix="a" lib_name="A" size="36"/>
|
||||
<port type="input" prefix="b" lib_name="B" size="36"/>
|
||||
<port type="output" prefix="out" size="72"/>
|
||||
<port type="input" prefix="a" lib_name="a" size="36"/>
|
||||
<port type="input" prefix="b" lib_name="b" size="36"/>
|
||||
<port type="output" prefix="out" lib_name="out" size="72"/>
|
||||
<!-- As a fracturable multiplier, it requires 2 configuration bits to operate in 4 different modes -->
|
||||
<port type="sram" prefix="mode" size="2" mode_select="true" circuit_model_name="DFFR" default_val="1"/>
|
||||
</circuit_model>
|
||||
|
|
Loading…
Reference in New Issue