.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/basic/plot_generic_tmr.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_basic_plot_generic_tmr.py: Basic TMR ---------- A bare minimum use case for SpyDrNet-TMR. This script loads in a netlist of an inverter from SpyDrNet. Only required parameters are given to `apply_tmr_to_netlist` so default settings will be applied. Everything in the netlist will be replicated, including all top-level ports. Since there are no reduction voters required and no special voter insertion was enabled, there are no voters inserted in this design. .. GENERATED FROM PYTHON SOURCE LINES 10-27 .. rst-class:: sphx-glr-script-out Out: .. code-block:: none Identified 0 insertion points for reduction voters. | .. code-block:: default import spydrnet as sdn from spydrnet_tmr.apply_tmr_to_netlist import apply_tmr_to_netlist from spydrnet_tmr.support_files.vendor_names import XILINX def run(): netlist_name = "inverter" netlist = sdn.load_example_netlist_by_name(netlist_name) apply_tmr_to_netlist( netlist, XILINX, ) sdn.compose(netlist, netlist_name + "_tmr.edf") run() .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.007 seconds) .. _sphx_glr_download_auto_examples_basic_plot_generic_tmr.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_generic_tmr.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_generic_tmr.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_