mnt.pyfiction


Namemnt.pyfiction JSON
Version 0.5.0 PyPI version JSON
download
home_pagehttps://www.cda.cit.tum.de/research/fcn/
SummaryDesign Automation for Field-coupled Nanotechnologies
upload_time2023-11-22 18:07:53
maintainer
docs_urlNone
authorMarcel Walter
requires_python>=3.7
licenseCopyright 2018-2023 Marcel Walter Copyright 2023-present, Chair for Design Automation, Technical University of Munich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords mnt fiction nanotechnology fcn qca nml sidb design automation placement routing clocking simulation
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # *fiction* – Design Automation for Field-coupled Nanotechnologies

[![Ubuntu CI](https://img.shields.io/github/actions/workflow/status/cda-tum/fiction/ubuntu.yml?label=Ubuntu&logo=ubuntu&style=flat-square)](https://github.com/cda-tum/fiction/actions/workflows/ubuntu.yml)
[![macOS CI](https://img.shields.io/github/actions/workflow/status/cda-tum/fiction/macos.yml?label=macOS&logo=apple&style=flat-square)](https://github.com/cda-tum/fiction/actions/workflows/macos.yml)
[![Windows CI](https://img.shields.io/github/actions/workflow/status/cda-tum/fiction/windows.yml?label=Windows&logo=windows&style=flat-square)](https://github.com/cda-tum/fiction/actions/workflows/windows.yml)
[![CodeQL](https://img.shields.io/github/actions/workflow/status/cda-tum/fiction/codeql-analysis.yml?label=CodeQL&logo=github&style=flat-square)](https://github.com/cda-tum/fiction/actions/workflows/codeql-analysis.yml)
[![Docker Image](https://img.shields.io/github/actions/workflow/status/cda-tum/fiction/docker-image.yml?label=Docker&logo=docker&style=flat-square)](https://github.com/cda-tum/fiction/actions/workflows/docker-image.yml)
[![Documentation Status](https://img.shields.io/readthedocs/fiction?label=Docs&logo=readthedocs&style=flat-square)](https://fiction.readthedocs.io/)
[![codecov](https://img.shields.io/codecov/c/github/cda-tum/fiction?label=Coverage&logo=codecov&style=flat-square)](https://codecov.io/gh/cda-tum/fiction)
[![License](https://img.shields.io/github/license/cda-tum/fiction?label=License&style=flat-square)](https://github.com/cda-tum/fiction/blob/main/LICENSE.txt)
[![Release](https://img.shields.io/github/v/release/cda-tum/fiction?label=fiction&style=flat-square)](https://github.com/cda-tum/fiction/releases)
[![arXiv](https://img.shields.io/static/v1?label=arXiv&message=1905.02477&color=informational&style=flat-square)](https://arxiv.org/abs/1905.02477)

<p align="center">
  <picture>
    <source media="(prefers-color-scheme: dark)" srcset="docs/_static/mnt_light.svg" width="60%">
    <img src="docs/_static/mnt_dark.svg" width="60%">
  </picture>
</p>

This code base provides a C++17 framework for **fi**eld-**c**oupled **t**echnology-**i**ndependent **o**pen
**n**anocomputing developed as part of the _Munich Nanotech Toolkit_ (_MNT_) by the
[Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).
Within *fiction*, algorithms for logic synthesis, placement, routing, clocking, verification, and simulation for
[Field-coupled Nanocomputing (FCN)](https://www.springer.com/de/book/9783662437216) technologies are implemented.

To this end, most physical design tasks can be performed on generic data structures that abstract from particular
technology or cell design. Using an extensible set of gate libraries, technologies, and cell types, these can easily
be compiled down to any desired FCN technology for physical simulation.

For these use cases, *fiction* provides
a [header-only library](https://fiction.readthedocs.io/en/latest/getting_started.html#using-fiction-as-a-header-only-library)
that provides data types and algorithms for recurring tasks, e.g., logic network and layout types on different
abstraction levels, clocking schemes, gate libraries, design automation algorithms, etc. Additionally, *fiction* comes
with an ABC-like
[CLI tool](https://fiction.readthedocs.io/en/latest/getting_started.html#using-fiction-as-a-stand-alone-cli-tool)
that allows quick access to its core functionality.


<p align="center">
  <a href="https://fiction.readthedocs.io/en/latest/">
  <img width=30% src="https://img.shields.io/badge/documentation-blue?style=for-the-badge&logo=read%20the%20docs" alt="Documentation" />
  </a>
</p>

If you have any questions, feel free to contact us via [fcn.cda@xcit.tum.de](mailto:fcn.cda@xcit.tum.de) or by
creating an issue on [GitHub](https://github.com/cda-tum/fiction/issues).

## Quick Start

> Clone the repository and its submodules:

```bash
git clone --recursive https://github.com/cda-tum/fiction.git
```

### The CLI

> Inside the newly cloned `fiction` folder, trigger the build process:

```bash
cmake . -B build
cd build
cmake --build . -j4
```

> Run the CLI tool:

```bash
cli/fiction
```

> Here is an example of running *fiction* to perform a full physical design flow on a QCA circuit layout that can
> afterward be simulated in QCADesigner:

![CLI example](docs/_static/fiction_cli_example.gif)

### The Header-only Library

> Add `fiction` as a sub-directory to your CMake project and link against `libfiction` (assuming your project is
> called `fanfiction`):

```CMake
add_subdirectory(fiction/)
target_link_libraries(fanfiction libfiction)
```

> Include the headers you need:

```C++
#include <fiction/layouts/cell_level_layout.hpp>
#include <fiction/layouts/clocking_scheme.hpp>
#include <fiction/technology/qca_one_library.hpp>
#include <fiction/io/write_qca_layout.hpp>
#include <fiction/...>
```

For a full getting started guide, please refer to
the [documentation](https://fiction.readthedocs.io/en/latest/getting_started.html).

## Supported Technologies

Physical design in *fiction* can be performed technology-independent. Only if resulted layouts are to be physically,
simulated, a specific technology implementation is required. To this end, *fiction* supports various potential FCN
implementations together with gate libraries to compile gate-level layout abstractions down to the cell level.
Additionally, output formats for external physical simulator engines are also supported.

### Quantum-dot Cellular Automata (QCA)

<img src="docs/_static/qca_cells.png" alt="QCA cells" align="right" height="70"/>

Gate libraries:

- [QCA ONE](https://ieeexplore.ieee.org/document/7538997/)

File formats:

- `*.qca` for [QCADesigner](https://waluslab.ece.ubc.ca/qcadesigner/)
- `*.qll` for [MagCAD](https://topolinano.polito.it/) and [SCERPA](https://ieeexplore.ieee.org/document/8935211)
- `*.fqca` for [QCA-STACK](https://github.com/wlambooy/QCA-STACK)
- `*.svg` for visual representation

Many thanks to Frank Sill Torres for his support with the QCADesigner format, to Willem Lambooy for his support with the
QCA-STACK format, and to Sophia Kuhn for implementing the SVG writer!

### in-plane Nanomagnet Logic (iNML)

<img src="docs/_static/nml_cells.png" alt="iNML cells" align="right" height="70"/>

Gate libraries:

- [ToPoliNano](https://topolinano.polito.it/supported-technologies/)

File formats:

- `*.qcc` for [ToPoliNano](https://topolinano.polito.it/)
- `*.qll` for [ToPoliNano & MagCAD](https://topolinano.polito.it/)

Many thanks to Umberto Garlando, Fabrizio Riente, and Giuliana Beretta for their support!

### Silicon Dangling Bonds (SiDBs)

<img src="docs/_static/sidb_cells.png" alt="SiDB cells" align="right" height="70"/>

Gate libraries:

- [Bestagon](https://dl.acm.org/doi/10.1145/3489517.3530525)

File formats:

- `*.sqd` for [SiQAD](https://github.com/siqad/siqad)

Many thanks to Samuel Sze Hang Ng for his support!

## Implemented Design Automation Algorithms

The *fiction* framework provides implementations of state-of-the-art design automation algorithms for FCN technologies.
These algorithms can be used in evaluation scripts to perform logic synthesis, physical design, layout verification, and
physical simulation.

### Logic Synthesis

For logic synthesis, *fiction* relies on the [mockturtle library](https://github.com/lsils/mockturtle) that offers a
multitude of logic network types and optimization algorithms. Logic synthesis can be performed in external tools and
resulting Verilog/AIGER/BLIF/... files can be parsed by *fiction*. Alternatively, since *mockturtle* is included in
*fiction*, synthesis can be applied in the same evaluation script.

### Physical Design

For automatic FCN layout obtainment, *fiction* provides algorithms that
receive [mockturtle logic networks](https://mockturtle.readthedocs.io/en/latest/implementations.html) as input
specification and output placed, routed, and clocked generic FCN circuits.

<img src="docs/_static/compare1.png" alt="QCA Layout" align="right" width="280"/>

Among these algorithms are

- SMT-based [exact placement and routing](https://ieeexplore.ieee.org/document/8342060)
- OGD-based [scalable placement and routing](https://dl.acm.org/citation.cfm?id=3287705)
- SAT-based [one-pass synthesis](https://ieeexplore.ieee.org/document/9371573)
- SAT-based [multi-path routing](https://dl.acm.org/doi/10.1145/3565478.3572539)

plus several path-finding algorithms that work on generic layouts:

- shortest path via the [A* algorithm](https://ieeexplore.ieee.org/document/4082128)
- *k* shortest paths via [Yen's algorithm](https://www.ams.org/journals/qam/1970-27-04/S0033-569X-1970-0253822-7/)

### Verification

Layout correctness can be [validated](https://fiction.readthedocs.io/en/latest/algorithms/algorithms.html#verification)
using

- [Design Rule Violation (DRV)](https://fiction.readthedocs.io/en/latest/algorithms/verification.html#design-rule-violations-drvs)
  checking
- SAT-based [formal verification](https://ieeexplore.ieee.org/document/9218641) (equivalence checking)

### Physical Simulation

When a layout is compiled to the cell level via the application of a technology-dependent gate library, it can be
simulated using a physical model. Currently, the following simulation algorithms are implemented in *fiction*:

- Silicon Dangling Bonds (SiDBs)
    - [*QuickExact*](https://arxiv.org/abs/2308.04487)
    - [*QuickSim* Groundstate Simulation](https://ieeexplore.ieee.org/document/10231266)
    - [Critical Temperature](https://ieeexplore.ieee.org/document/10231259)
    - [Exhaustive Groundstate Simulation *(ExGS)*](https://open.library.ubc.ca/soa/cIRcle/collections/ubctheses/24/items/1.0392909)


## Clocking Schemes

Regular clocking schemes have been proposed in the FCN literature, which can be used as a floor plans for physical
design. However, sometimes it can make sense to have more freedom and assign clock numbers on the fly. That is
why *fiction* supports both
[regular and irregular clocking schemes](https://fiction.readthedocs.io/en/latest/layouts/clocking_scheme.html)
with variable amounts of clock numbers as QCA for instance uses four clock phases but iNML needs only three.

Built-in schemes are

|      [Columnar](https://ieeexplore.ieee.org/document/573740)       |    [Row](https://ieeexplore.ieee.org/document/573740)    |     [2DDWave](https://ieeexplore.ieee.org/document/1717097)      |
|:------------------------------------------------------------------:|:--------------------------------------------------------:|:----------------------------------------------------------------:|
| <img src="docs/_static/columnar.png" alt="Columnar" height="200"/> | <img src="docs/_static/row.png" alt="Row" height="200"/> | <img src="docs/_static/2ddwave.png" alt="2DDWave" height="200"/> |

|   [USE](https://ieeexplore.ieee.org/document/7219390)    | [RES](https://www.tandfonline.com/doi/abs/10.1080/21681724.2019.1570551) | [ESR](https://link.springer.com/content/pdf/10.1007/s10470-020-01760-4.pdf) |
|:--------------------------------------------------------:|:------------------------------------------------------------------------:|:---------------------------------------------------------------------------:|
| <img src="docs/_static/use.png" alt="USE" height="200"/> |         <img src="docs/_static/res.png" alt="RES" height="200"/>         |          <img src="docs/_static/esr.png" alt="ESR" height="200"/>           |

| [CFE](https://ietresearch.onlinelibrary.wiley.com/doi/10.1049/iet-cds.2019.0096) |    [BANCS](https://ieeexplore.ieee.org/document/8533251)     |
|:--------------------------------------------------------------------------------:|:------------------------------------------------------------:|
|             <img src="docs/_static/cfe.png" alt="CFE" height="200"/>             | <img src="docs/_static/bancs.png" alt="BANCS" height="300"/> |

plus the mentioned irregular open clocking that works via a clock map instead of a regular extrapolated cutout.

## Wire Crossings

<img src="docs/_static/cross.png" alt="Second layer crossing" align="left" width="200"/>

With many FCN technologies considered planar, wire crossings should be minimized if possible. However, there are some
options in QCA where, using a second layer, crossings over short distances and co-planar rotated cells become possible.
As both are just technical implementations of the same concept, *fiction* supports crossings as wires in a second grid
layer in its data structures for all FCN technologies. They will also be represented as such in corresponding SVG and
QCADesigner output. However, note that it is to be interpreted as the concept of crossings and could also be realized
co-planar.

Wires are only allowed to cross other wires! Wires crossing gates is considered to lead to unstable signals.

## Gate Pins vs. Designated I/Os

<img src="docs/_static/io.png" alt="Input pin and cell output" align="right" width="200"/>

In the literature, both are seen: having input cells (pins) directly located in the gate structure or using designated
I/O elements that are located outside of gates. This distinction only makes sense on the gate level and *fiction*
supports both approaches and offers usage in the implemented physical design algorithms.

## Multi Wires

<img src="docs/_static/multi.png" alt="Multi wires" align="left" width="200"/>

Gate-level abstraction has its limits. Often, chip area is wasted when only using a single wire per tile. In *fiction*,
cell-level layouts allow for precise control over cell placement and can, thus, also create multiple wire segments per
clock zone. Physical simulation can give an indication of whether the built structures are implementing the intended
functionality.

## Synchronization Elements

<img src="docs/_static/se.png" alt="Synchronization element" align="right" width="150"/>

A technology extension proposes to utilize the external clock signal generator in an unconventional way: by creating
further asymmetric clock signals with extended *Hold* phases that are assigned to specific wire
tiles, [synchronization elements](https://ieeexplore.ieee.org/document/8626294) can be created that stall signals over
multiple clock cycles. These artificial latches are able to feed information to any other clock number, but their usage
reduces the overall throughput of the layout. In return, long wire detours for signal synchronization can be prevented.

## Cost Metrics

Designed layouts can be evaluated with regard to several cost functions. The following metrics are currently
implemented:

Gate-level layouts:

- Circuit dimension in tiles
- Number of gate tiles
- Number of wire tiles
- Number of wire crossings
- Number of [synchronization elements](#synchronization-elements)
- Critical path
- Throughput
- Bounding box
- Energy dissipation based on a [physical model](https://ieeexplore.ieee.org/document/8246526) (QCA only)

Cell-level layouts:

- Circuit dimension in cells
- Number of cells
- Bounding box
- Area usage in nm²

# Reference

Since *fiction* is academic software, we would be thankful if you referred to it by citing the following publication:

```bibtex
@misc{fiction,
      author = {Walter, Marcel and Wille, Robert and Sill Torres, Frank and Gro{\ss}e, Daniel and Drechsler, Rolf},
      title = {{fiction: An Open Source Framework for the Design of Field-coupled Nanocomputing Circuits}},
      archivePrefix = {arXiv},
      eprint = {1905.02477},
      note = {arXiv:1905.02477},
      year = {2019},
      month = {May}
}
```

Additionally, many algorithms implemented in *fiction* have been published individually. For a full list of
publications, please refer to the [documentation](https://fiction.readthedocs.io/en/latest/publications.html).

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.cda.cit.tum.de/research/fcn/",
    "name": "mnt.pyfiction",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "MNT,fiction,nanotechnology,FCN,QCA,NML,SiDB,design automation,placement,routing,clocking,simulation",
    "author": "Marcel Walter",
    "author_email": "Marcel Walter <marcel.walter@tum.de>, Jan Drewniok <jan.drewniok@tum.de>, Simon Hofmann <simon.t.hofmann@tum.de>, Benjamin Hien <benjamin.hien@tum.de>",
    "download_url": "https://files.pythonhosted.org/packages/0f/3f/d4940b99aad4b763a3ec9e245e596b31f1965f8f41d698a8ec24fb35b8aa/mnt.pyfiction-0.5.0.tar.gz",
    "platform": null,
    "description": "# *fiction* &ndash; Design Automation for Field-coupled Nanotechnologies\n\n[![Ubuntu CI](https://img.shields.io/github/actions/workflow/status/cda-tum/fiction/ubuntu.yml?label=Ubuntu&logo=ubuntu&style=flat-square)](https://github.com/cda-tum/fiction/actions/workflows/ubuntu.yml)\n[![macOS CI](https://img.shields.io/github/actions/workflow/status/cda-tum/fiction/macos.yml?label=macOS&logo=apple&style=flat-square)](https://github.com/cda-tum/fiction/actions/workflows/macos.yml)\n[![Windows CI](https://img.shields.io/github/actions/workflow/status/cda-tum/fiction/windows.yml?label=Windows&logo=windows&style=flat-square)](https://github.com/cda-tum/fiction/actions/workflows/windows.yml)\n[![CodeQL](https://img.shields.io/github/actions/workflow/status/cda-tum/fiction/codeql-analysis.yml?label=CodeQL&logo=github&style=flat-square)](https://github.com/cda-tum/fiction/actions/workflows/codeql-analysis.yml)\n[![Docker Image](https://img.shields.io/github/actions/workflow/status/cda-tum/fiction/docker-image.yml?label=Docker&logo=docker&style=flat-square)](https://github.com/cda-tum/fiction/actions/workflows/docker-image.yml)\n[![Documentation Status](https://img.shields.io/readthedocs/fiction?label=Docs&logo=readthedocs&style=flat-square)](https://fiction.readthedocs.io/)\n[![codecov](https://img.shields.io/codecov/c/github/cda-tum/fiction?label=Coverage&logo=codecov&style=flat-square)](https://codecov.io/gh/cda-tum/fiction)\n[![License](https://img.shields.io/github/license/cda-tum/fiction?label=License&style=flat-square)](https://github.com/cda-tum/fiction/blob/main/LICENSE.txt)\n[![Release](https://img.shields.io/github/v/release/cda-tum/fiction?label=fiction&style=flat-square)](https://github.com/cda-tum/fiction/releases)\n[![arXiv](https://img.shields.io/static/v1?label=arXiv&message=1905.02477&color=informational&style=flat-square)](https://arxiv.org/abs/1905.02477)\n\n<p align=\"center\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"docs/_static/mnt_light.svg\" width=\"60%\">\n    <img src=\"docs/_static/mnt_dark.svg\" width=\"60%\">\n  </picture>\n</p>\n\nThis code base provides a C++17 framework for **fi**eld-**c**oupled **t**echnology-**i**ndependent **o**pen\n**n**anocomputing developed as part of the _Munich Nanotech Toolkit_ (_MNT_) by the\n[Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).\nWithin *fiction*, algorithms for logic synthesis, placement, routing, clocking, verification, and simulation for\n[Field-coupled Nanocomputing (FCN)](https://www.springer.com/de/book/9783662437216) technologies are implemented.\n\nTo this end, most physical design tasks can be performed on generic data structures that abstract from particular\ntechnology or cell design. Using an extensible set of gate libraries, technologies, and cell types, these can easily\nbe compiled down to any desired FCN technology for physical simulation.\n\nFor these use cases, *fiction* provides\na [header-only library](https://fiction.readthedocs.io/en/latest/getting_started.html#using-fiction-as-a-header-only-library)\nthat provides data types and algorithms for recurring tasks, e.g., logic network and layout types on different\nabstraction levels, clocking schemes, gate libraries, design automation algorithms, etc. Additionally, *fiction* comes\nwith an ABC-like\n[CLI tool](https://fiction.readthedocs.io/en/latest/getting_started.html#using-fiction-as-a-stand-alone-cli-tool)\nthat allows quick access to its core functionality.\n\n\n<p align=\"center\">\n  <a href=\"https://fiction.readthedocs.io/en/latest/\">\n  <img width=30% src=\"https://img.shields.io/badge/documentation-blue?style=for-the-badge&logo=read%20the%20docs\" alt=\"Documentation\" />\n  </a>\n</p>\n\nIf you have any questions, feel free to contact us via [fcn.cda@xcit.tum.de](mailto:fcn.cda@xcit.tum.de) or by\ncreating an issue on [GitHub](https://github.com/cda-tum/fiction/issues).\n\n## Quick Start\n\n> Clone the repository and its submodules:\n\n```bash\ngit clone --recursive https://github.com/cda-tum/fiction.git\n```\n\n### The CLI\n\n> Inside the newly cloned `fiction` folder, trigger the build process:\n\n```bash\ncmake . -B build\ncd build\ncmake --build . -j4\n```\n\n> Run the CLI tool:\n\n```bash\ncli/fiction\n```\n\n> Here is an example of running *fiction* to perform a full physical design flow on a QCA circuit layout that can\n> afterward be simulated in QCADesigner:\n\n![CLI example](docs/_static/fiction_cli_example.gif)\n\n### The Header-only Library\n\n> Add `fiction` as a sub-directory to your CMake project and link against `libfiction` (assuming your project is\n> called `fanfiction`):\n\n```CMake\nadd_subdirectory(fiction/)\ntarget_link_libraries(fanfiction libfiction)\n```\n\n> Include the headers you need:\n\n```C++\n#include <fiction/layouts/cell_level_layout.hpp>\n#include <fiction/layouts/clocking_scheme.hpp>\n#include <fiction/technology/qca_one_library.hpp>\n#include <fiction/io/write_qca_layout.hpp>\n#include <fiction/...>\n```\n\nFor a full getting started guide, please refer to\nthe [documentation](https://fiction.readthedocs.io/en/latest/getting_started.html).\n\n## Supported Technologies\n\nPhysical design in *fiction* can be performed technology-independent. Only if resulted layouts are to be physically,\nsimulated, a specific technology implementation is required. To this end, *fiction* supports various potential FCN\nimplementations together with gate libraries to compile gate-level layout abstractions down to the cell level.\nAdditionally, output formats for external physical simulator engines are also supported.\n\n### Quantum-dot Cellular Automata (QCA)\n\n<img src=\"docs/_static/qca_cells.png\" alt=\"QCA cells\" align=\"right\" height=\"70\"/>\n\nGate libraries:\n\n- [QCA ONE](https://ieeexplore.ieee.org/document/7538997/)\n\nFile formats:\n\n- `*.qca` for [QCADesigner](https://waluslab.ece.ubc.ca/qcadesigner/)\n- `*.qll` for [MagCAD](https://topolinano.polito.it/) and [SCERPA](https://ieeexplore.ieee.org/document/8935211)\n- `*.fqca` for [QCA-STACK](https://github.com/wlambooy/QCA-STACK)\n- `*.svg` for visual representation\n\nMany thanks to Frank Sill Torres for his support with the QCADesigner format, to Willem Lambooy for his support with the\nQCA-STACK format, and to Sophia Kuhn for implementing the SVG writer!\n\n### in-plane Nanomagnet Logic (iNML)\n\n<img src=\"docs/_static/nml_cells.png\" alt=\"iNML cells\" align=\"right\" height=\"70\"/>\n\nGate libraries:\n\n- [ToPoliNano](https://topolinano.polito.it/supported-technologies/)\n\nFile formats:\n\n- `*.qcc` for [ToPoliNano](https://topolinano.polito.it/)\n- `*.qll` for [ToPoliNano & MagCAD](https://topolinano.polito.it/)\n\nMany thanks to Umberto Garlando, Fabrizio Riente, and Giuliana Beretta for their support!\n\n### Silicon Dangling Bonds (SiDBs)\n\n<img src=\"docs/_static/sidb_cells.png\" alt=\"SiDB cells\" align=\"right\" height=\"70\"/>\n\nGate libraries:\n\n- [Bestagon](https://dl.acm.org/doi/10.1145/3489517.3530525)\n\nFile formats:\n\n- `*.sqd` for [SiQAD](https://github.com/siqad/siqad)\n\nMany thanks to Samuel Sze Hang Ng for his support!\n\n## Implemented Design Automation Algorithms\n\nThe *fiction* framework provides implementations of state-of-the-art design automation algorithms for FCN technologies.\nThese algorithms can be used in evaluation scripts to perform logic synthesis, physical design, layout verification, and\nphysical simulation.\n\n### Logic Synthesis\n\nFor logic synthesis, *fiction* relies on the [mockturtle library](https://github.com/lsils/mockturtle) that offers a\nmultitude of logic network types and optimization algorithms. Logic synthesis can be performed in external tools and\nresulting Verilog/AIGER/BLIF/... files can be parsed by *fiction*. Alternatively, since *mockturtle* is included in\n*fiction*, synthesis can be applied in the same evaluation script.\n\n### Physical Design\n\nFor automatic FCN layout obtainment, *fiction* provides algorithms that\nreceive [mockturtle logic networks](https://mockturtle.readthedocs.io/en/latest/implementations.html) as input\nspecification and output placed, routed, and clocked generic FCN circuits.\n\n<img src=\"docs/_static/compare1.png\" alt=\"QCA Layout\" align=\"right\" width=\"280\"/>\n\nAmong these algorithms are\n\n- SMT-based [exact placement and routing](https://ieeexplore.ieee.org/document/8342060)\n- OGD-based [scalable placement and routing](https://dl.acm.org/citation.cfm?id=3287705)\n- SAT-based [one-pass synthesis](https://ieeexplore.ieee.org/document/9371573)\n- SAT-based [multi-path routing](https://dl.acm.org/doi/10.1145/3565478.3572539)\n\nplus several path-finding algorithms that work on generic layouts:\n\n- shortest path via the [A* algorithm](https://ieeexplore.ieee.org/document/4082128)\n- *k* shortest paths via [Yen's algorithm](https://www.ams.org/journals/qam/1970-27-04/S0033-569X-1970-0253822-7/)\n\n### Verification\n\nLayout correctness can be [validated](https://fiction.readthedocs.io/en/latest/algorithms/algorithms.html#verification)\nusing\n\n- [Design Rule Violation (DRV)](https://fiction.readthedocs.io/en/latest/algorithms/verification.html#design-rule-violations-drvs)\n  checking\n- SAT-based [formal verification](https://ieeexplore.ieee.org/document/9218641) (equivalence checking)\n\n### Physical Simulation\n\nWhen a layout is compiled to the cell level via the application of a technology-dependent gate library, it can be\nsimulated using a physical model. Currently, the following simulation algorithms are implemented in *fiction*:\n\n- Silicon Dangling Bonds (SiDBs)\n    - [*QuickExact*](https://arxiv.org/abs/2308.04487)\n    - [*QuickSim* Groundstate Simulation](https://ieeexplore.ieee.org/document/10231266)\n    - [Critical Temperature](https://ieeexplore.ieee.org/document/10231259)\n    - [Exhaustive Groundstate Simulation *(ExGS)*](https://open.library.ubc.ca/soa/cIRcle/collections/ubctheses/24/items/1.0392909)\n\n\n## Clocking Schemes\n\nRegular clocking schemes have been proposed in the FCN literature, which can be used as a floor plans for physical\ndesign. However, sometimes it can make sense to have more freedom and assign clock numbers on the fly. That is\nwhy *fiction* supports both\n[regular and irregular clocking schemes](https://fiction.readthedocs.io/en/latest/layouts/clocking_scheme.html)\nwith variable amounts of clock numbers as QCA for instance uses four clock phases but iNML needs only three.\n\nBuilt-in schemes are\n\n|      [Columnar](https://ieeexplore.ieee.org/document/573740)       |    [Row](https://ieeexplore.ieee.org/document/573740)    |     [2DDWave](https://ieeexplore.ieee.org/document/1717097)      |\n|:------------------------------------------------------------------:|:--------------------------------------------------------:|:----------------------------------------------------------------:|\n| <img src=\"docs/_static/columnar.png\" alt=\"Columnar\" height=\"200\"/> | <img src=\"docs/_static/row.png\" alt=\"Row\" height=\"200\"/> | <img src=\"docs/_static/2ddwave.png\" alt=\"2DDWave\" height=\"200\"/> |\n\n|   [USE](https://ieeexplore.ieee.org/document/7219390)    | [RES](https://www.tandfonline.com/doi/abs/10.1080/21681724.2019.1570551) | [ESR](https://link.springer.com/content/pdf/10.1007/s10470-020-01760-4.pdf) |\n|:--------------------------------------------------------:|:------------------------------------------------------------------------:|:---------------------------------------------------------------------------:|\n| <img src=\"docs/_static/use.png\" alt=\"USE\" height=\"200\"/> |         <img src=\"docs/_static/res.png\" alt=\"RES\" height=\"200\"/>         |          <img src=\"docs/_static/esr.png\" alt=\"ESR\" height=\"200\"/>           |\n\n| [CFE](https://ietresearch.onlinelibrary.wiley.com/doi/10.1049/iet-cds.2019.0096) |    [BANCS](https://ieeexplore.ieee.org/document/8533251)     |\n|:--------------------------------------------------------------------------------:|:------------------------------------------------------------:|\n|             <img src=\"docs/_static/cfe.png\" alt=\"CFE\" height=\"200\"/>             | <img src=\"docs/_static/bancs.png\" alt=\"BANCS\" height=\"300\"/> |\n\nplus the mentioned irregular open clocking that works via a clock map instead of a regular extrapolated cutout.\n\n## Wire Crossings\n\n<img src=\"docs/_static/cross.png\" alt=\"Second layer crossing\" align=\"left\" width=\"200\"/>\n\nWith many FCN technologies considered planar, wire crossings should be minimized if possible. However, there are some\noptions in QCA where, using a second layer, crossings over short distances and co-planar rotated cells become possible.\nAs both are just technical implementations of the same concept, *fiction* supports crossings as wires in a second grid\nlayer in its data structures for all FCN technologies. They will also be represented as such in corresponding SVG and\nQCADesigner output. However, note that it is to be interpreted as the concept of crossings and could also be realized\nco-planar.\n\nWires are only allowed to cross other wires! Wires crossing gates is considered to lead to unstable signals.\n\n## Gate Pins vs. Designated I/Os\n\n<img src=\"docs/_static/io.png\" alt=\"Input pin and cell output\" align=\"right\" width=\"200\"/>\n\nIn the literature, both are seen: having input cells (pins) directly located in the gate structure or using designated\nI/O elements that are located outside of gates. This distinction only makes sense on the gate level and *fiction*\nsupports both approaches and offers usage in the implemented physical design algorithms.\n\n## Multi Wires\n\n<img src=\"docs/_static/multi.png\" alt=\"Multi wires\" align=\"left\" width=\"200\"/>\n\nGate-level abstraction has its limits. Often, chip area is wasted when only using a single wire per tile. In *fiction*,\ncell-level layouts allow for precise control over cell placement and can, thus, also create multiple wire segments per\nclock zone. Physical simulation can give an indication of whether the built structures are implementing the intended\nfunctionality.\n\n## Synchronization Elements\n\n<img src=\"docs/_static/se.png\" alt=\"Synchronization element\" align=\"right\" width=\"150\"/>\n\nA technology extension proposes to utilize the external clock signal generator in an unconventional way: by creating\nfurther asymmetric clock signals with extended *Hold* phases that are assigned to specific wire\ntiles, [synchronization elements](https://ieeexplore.ieee.org/document/8626294) can be created that stall signals over\nmultiple clock cycles. These artificial latches are able to feed information to any other clock number, but their usage\nreduces the overall throughput of the layout. In return, long wire detours for signal synchronization can be prevented.\n\n## Cost Metrics\n\nDesigned layouts can be evaluated with regard to several cost functions. The following metrics are currently\nimplemented:\n\nGate-level layouts:\n\n- Circuit dimension in tiles\n- Number of gate tiles\n- Number of wire tiles\n- Number of wire crossings\n- Number of [synchronization elements](#synchronization-elements)\n- Critical path\n- Throughput\n- Bounding box\n- Energy dissipation based on a [physical model](https://ieeexplore.ieee.org/document/8246526) (QCA only)\n\nCell-level layouts:\n\n- Circuit dimension in cells\n- Number of cells\n- Bounding box\n- Area usage in nm\u00b2\n\n# Reference\n\nSince *fiction* is academic software, we would be thankful if you referred to it by citing the following publication:\n\n```bibtex\n@misc{fiction,\n      author = {Walter, Marcel and Wille, Robert and Sill Torres, Frank and Gro{\\ss}e, Daniel and Drechsler, Rolf},\n      title = {{fiction: An Open Source Framework for the Design of Field-coupled Nanocomputing Circuits}},\n      archivePrefix = {arXiv},\n      eprint = {1905.02477},\n      note = {arXiv:1905.02477},\n      year = {2019},\n      month = {May}\n}\n```\n\nAdditionally, many algorithms implemented in *fiction* have been published individually. For a full list of\npublications, please refer to the [documentation](https://fiction.readthedocs.io/en/latest/publications.html).\n",
    "bugtrack_url": null,
    "license": "Copyright 2018-2023 Marcel Walter Copyright 2023-present, Chair for Design Automation, Technical University of Munich  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Design Automation for Field-coupled Nanotechnologies",
    "version": "0.5.0",
    "project_urls": {
        "Documentation": "https://fiction.readthedocs.io/en/latest/",
        "Homepage": "https://www.cda.cit.tum.de/research/fcn/",
        "Research": "https://www.cda.cit.tum.de/research/fcn/",
        "Source": "https://github.com/cda-tum/fiction",
        "Tracker": "https://github.com/cda-tum/fiction/issues"
    },
    "split_keywords": [
        "mnt",
        "fiction",
        "nanotechnology",
        "fcn",
        "qca",
        "nml",
        "sidb",
        "design automation",
        "placement",
        "routing",
        "clocking",
        "simulation"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdc94edb51cd6316cd2f40b246457cb215933c7e56242b7375c3e1acb9a2d184",
                "md5": "051e4979163fa1b7df87365c1f7dd32f",
                "sha256": "131ad31389be8904dda7deb15b80279981a2c5f01c993f971fe4b0e557745ded"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "051e4979163fa1b7df87365c1f7dd32f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 11781661,
            "upload_time": "2023-11-22T18:06:57",
            "upload_time_iso_8601": "2023-11-22T18:06:57.420747Z",
            "url": "https://files.pythonhosted.org/packages/cd/c9/4edb51cd6316cd2f40b246457cb215933c7e56242b7375c3e1acb9a2d184/mnt.pyfiction-0.5.0-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9f4addd82425e2ae7a1fc1d2de2e793a12f79462a2311424be916ec8f79550f",
                "md5": "92707594a0710d84525736b1973734fb",
                "sha256": "365b9d3dad0c75afe248ff1137a942647c04f6b78a71b2cd933456e68d62b577"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "92707594a0710d84525736b1973734fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 10394269,
            "upload_time": "2023-11-22T18:07:00",
            "upload_time_iso_8601": "2023-11-22T18:07:00.302420Z",
            "url": "https://files.pythonhosted.org/packages/d9/f4/addd82425e2ae7a1fc1d2de2e793a12f79462a2311424be916ec8f79550f/mnt.pyfiction-0.5.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da5730d4190b1725194e5af60787272c5249df778fc050f3759c096427ec9b26",
                "md5": "2071d19a8c90631c306d2461c7e55991",
                "sha256": "d8ce6ed92a93380c47535cf210c2b43db773df897ac024b4629846d10e042f7f"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2071d19a8c90631c306d2461c7e55991",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 14034076,
            "upload_time": "2023-11-22T18:07:03",
            "upload_time_iso_8601": "2023-11-22T18:07:03.792481Z",
            "url": "https://files.pythonhosted.org/packages/da/57/30d4190b1725194e5af60787272c5249df778fc050f3759c096427ec9b26/mnt.pyfiction-0.5.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "018418bf3e72f07e3d97b0dd5bb5323a4ca08778f2e4be57036ea680eb8725e4",
                "md5": "ac9bdf486abb146242cde0c5de40db72",
                "sha256": "4dd356a547d5ed0893dc5d373d8c65d81ff927039c13ee89ef2f5b345601c4be"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ac9bdf486abb146242cde0c5de40db72",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 8878686,
            "upload_time": "2023-11-22T18:07:06",
            "upload_time_iso_8601": "2023-11-22T18:07:06.182157Z",
            "url": "https://files.pythonhosted.org/packages/01/84/18bf3e72f07e3d97b0dd5bb5323a4ca08778f2e4be57036ea680eb8725e4/mnt.pyfiction-0.5.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1411038a70019c7674c55107551d6abded6ef2e2d8d94db975ebc0b8ce2908f6",
                "md5": "94183a7ea00599d51a17b660e40e321f",
                "sha256": "9832d6c8178cf4c63a6e4e3348e14d485080f556f2dcb12269ad7e9bbfa205b7"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "94183a7ea00599d51a17b660e40e321f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 11782758,
            "upload_time": "2023-11-22T18:07:08",
            "upload_time_iso_8601": "2023-11-22T18:07:08.753114Z",
            "url": "https://files.pythonhosted.org/packages/14/11/038a70019c7674c55107551d6abded6ef2e2d8d94db975ebc0b8ce2908f6/mnt.pyfiction-0.5.0-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7dbc7bc67f7b16cefefafd3b0992ca1c31f05ce9f3d1a879d10890c50bd288ab",
                "md5": "1fd58d1cdf6305464990507bdc2c7915",
                "sha256": "b3f58be0be6d15a108799653c3e4bbbdca08e98a5045b0124e0a0ae1403252d9"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1fd58d1cdf6305464990507bdc2c7915",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 10395823,
            "upload_time": "2023-11-22T18:07:11",
            "upload_time_iso_8601": "2023-11-22T18:07:11.940294Z",
            "url": "https://files.pythonhosted.org/packages/7d/bc/7bc67f7b16cefefafd3b0992ca1c31f05ce9f3d1a879d10890c50bd288ab/mnt.pyfiction-0.5.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28f7a0c165ad9e142c920001b1d8c664e22f5969a84d919c5461a79e25dc0ad8",
                "md5": "bb33b6157e4738eee38dc9ff484795bf",
                "sha256": "baee54bb8d48354b258007712998bc38fb9ea96e0646f8837f31ae989c5f8c2c"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bb33b6157e4738eee38dc9ff484795bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 14033846,
            "upload_time": "2023-11-22T18:07:14",
            "upload_time_iso_8601": "2023-11-22T18:07:14.738482Z",
            "url": "https://files.pythonhosted.org/packages/28/f7/a0c165ad9e142c920001b1d8c664e22f5969a84d919c5461a79e25dc0ad8/mnt.pyfiction-0.5.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9f9a1df8e68bfad3f20a527017e14492b13de9011b49f2301d59079cdf308bf",
                "md5": "73231a1449fc5aa387379d78905bf19c",
                "sha256": "d16d75a036e2cd359e7bb1bf13765ec14d8af9a97238c67caa37841b4905ed8a"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "73231a1449fc5aa387379d78905bf19c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 8880763,
            "upload_time": "2023-11-22T18:07:18",
            "upload_time_iso_8601": "2023-11-22T18:07:18.043762Z",
            "url": "https://files.pythonhosted.org/packages/a9/f9/a1df8e68bfad3f20a527017e14492b13de9011b49f2301d59079cdf308bf/mnt.pyfiction-0.5.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b78a7219ad9e5086004931126439e5a4e5b7f9fe1b341a0df40b5c2ae711ef5",
                "md5": "417ee30e03e9931778b6d38f3933eb1d",
                "sha256": "6a65daa433a3990bfdd0a0aba0477ca35f9199b1c8985e5b2293c9f52899d31b"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp37-cp37m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "417ee30e03e9931778b6d38f3933eb1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 11754506,
            "upload_time": "2023-11-22T18:07:20",
            "upload_time_iso_8601": "2023-11-22T18:07:20.778050Z",
            "url": "https://files.pythonhosted.org/packages/8b/78/a7219ad9e5086004931126439e5a4e5b7f9fe1b341a0df40b5c2ae711ef5/mnt.pyfiction-0.5.0-cp37-cp37m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a66a853ad392a1567586b3601e2213e3231c44ea8166d543f1fb9a1b2f9421b",
                "md5": "ca2b2ed65c0149228a3011d839241e79",
                "sha256": "271532172481c3c353f4a6023d6b93dcdb6f6a2796a071663361e4ce7dc20533"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp37-cp37m-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca2b2ed65c0149228a3011d839241e79",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 14094570,
            "upload_time": "2023-11-22T18:07:23",
            "upload_time_iso_8601": "2023-11-22T18:07:23.451308Z",
            "url": "https://files.pythonhosted.org/packages/3a/66/a853ad392a1567586b3601e2213e3231c44ea8166d543f1fb9a1b2f9421b/mnt.pyfiction-0.5.0-cp37-cp37m-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a0277187d7bd373adb9a2149eaa2ba72fce7ae43d89a9adbdeacf4a2b648de6",
                "md5": "d377067e11af108b2973e75018c2ced8",
                "sha256": "a1ac1fc137e21f9a8cde8dc5acd9622ee424308ea47733e1f6e45c02e13df500"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d377067e11af108b2973e75018c2ced8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 8929771,
            "upload_time": "2023-11-22T18:07:26",
            "upload_time_iso_8601": "2023-11-22T18:07:26.604231Z",
            "url": "https://files.pythonhosted.org/packages/1a/02/77187d7bd373adb9a2149eaa2ba72fce7ae43d89a9adbdeacf4a2b648de6/mnt.pyfiction-0.5.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb254091829f88e76f5cea6007dfd855602a052c0ec391575d9a9cedc03a7197",
                "md5": "931eb297661cef9bb66455575a008bfd",
                "sha256": "fd733fee6dead0656cbc6b813b2b016938db372f594b069534eeab1263859841"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp38-cp38-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "931eb297661cef9bb66455575a008bfd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 11781799,
            "upload_time": "2023-11-22T18:07:29",
            "upload_time_iso_8601": "2023-11-22T18:07:29.937306Z",
            "url": "https://files.pythonhosted.org/packages/eb/25/4091829f88e76f5cea6007dfd855602a052c0ec391575d9a9cedc03a7197/mnt.pyfiction-0.5.0-cp38-cp38-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c01b93e3dc69a03fb2a8a50d480c6c9cdc6863ede2021e4625b2c146c41cf1de",
                "md5": "f2b1ce041a2e71f6f06b017857ff17cc",
                "sha256": "bb1a5e45554ed951bb56c9d59678b7a4009cf2f38a8718930ccedd06c0477bd8"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f2b1ce041a2e71f6f06b017857ff17cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 10394505,
            "upload_time": "2023-11-22T18:07:33",
            "upload_time_iso_8601": "2023-11-22T18:07:33.438361Z",
            "url": "https://files.pythonhosted.org/packages/c0/1b/93e3dc69a03fb2a8a50d480c6c9cdc6863ede2021e4625b2c146c41cf1de/mnt.pyfiction-0.5.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18624f6baa43a89334c3f1268b18244b3107b4461ff202544cefe265f5b839b8",
                "md5": "99f3cf9e10bcb57d2036004e67d5f396",
                "sha256": "c75865eea739bd74d15554d80ba7ddc51f863f6b68b26e2bf2315d74664ccd18"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp38-cp38-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99f3cf9e10bcb57d2036004e67d5f396",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 14026566,
            "upload_time": "2023-11-22T18:07:36",
            "upload_time_iso_8601": "2023-11-22T18:07:36.259245Z",
            "url": "https://files.pythonhosted.org/packages/18/62/4f6baa43a89334c3f1268b18244b3107b4461ff202544cefe265f5b839b8/mnt.pyfiction-0.5.0-cp38-cp38-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb07ec5fea8adc0122108fb4009b913d6b03922aa211ff6d8601d63fec401c0d",
                "md5": "9d2537eb6b67bb9422fc223ec5bc194f",
                "sha256": "ed00041f4a9518a3aa9224109f6c20f72a2c5a3280c405fac3f43935b37239df"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9d2537eb6b67bb9422fc223ec5bc194f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 8893798,
            "upload_time": "2023-11-22T18:07:39",
            "upload_time_iso_8601": "2023-11-22T18:07:39.358349Z",
            "url": "https://files.pythonhosted.org/packages/cb/07/ec5fea8adc0122108fb4009b913d6b03922aa211ff6d8601d63fec401c0d/mnt.pyfiction-0.5.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "556cfdb3e571cc9f591dcc3e0e5570294ed41c6fd8a135e6ef1f1fb2c87cd130",
                "md5": "1538ce999e7cda07b7bfc3b46f588fbc",
                "sha256": "2dcedc5142a786dd11dac620b932cd9a02f1f6d3c588add1de51befa0e244e16"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1538ce999e7cda07b7bfc3b46f588fbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 11781680,
            "upload_time": "2023-11-22T18:07:42",
            "upload_time_iso_8601": "2023-11-22T18:07:42.561786Z",
            "url": "https://files.pythonhosted.org/packages/55/6c/fdb3e571cc9f591dcc3e0e5570294ed41c6fd8a135e6ef1f1fb2c87cd130/mnt.pyfiction-0.5.0-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2ae0e111c1a38553a0dd60947f30d228f7a884b4f3f29b8c6ebe8f8bd3cd9c5",
                "md5": "e6fd9afb64f7f6fe05bcd777c207f88d",
                "sha256": "6ab977abd2ee2467c2f7248c1cfb49d0e1e126c18ccc5f1abb4935d6e97e8496"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e6fd9afb64f7f6fe05bcd777c207f88d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 10394517,
            "upload_time": "2023-11-22T18:07:45",
            "upload_time_iso_8601": "2023-11-22T18:07:45.215955Z",
            "url": "https://files.pythonhosted.org/packages/a2/ae/0e111c1a38553a0dd60947f30d228f7a884b4f3f29b8c6ebe8f8bd3cd9c5/mnt.pyfiction-0.5.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04e86c2ce20b0f8448878ee4993762966feba657bc639916657b4a8f24d14615",
                "md5": "0419146fd597b1574ddbd812cd1b736a",
                "sha256": "a750ba540691edf480431c40bf6b1c55ab4f72348257ade54cb57a68e3de3654"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0419146fd597b1574ddbd812cd1b736a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 14031349,
            "upload_time": "2023-11-22T18:07:48",
            "upload_time_iso_8601": "2023-11-22T18:07:48.073597Z",
            "url": "https://files.pythonhosted.org/packages/04/e8/6c2ce20b0f8448878ee4993762966feba657bc639916657b4a8f24d14615/mnt.pyfiction-0.5.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94e712bc1ea7a6dbc1d35dcc6d4281aa126b61272f728d765b42a12f6d364798",
                "md5": "8d8838fef39a4ab84960ec57aa258b16",
                "sha256": "8529a47a0570d9377f5d10c6a8e9e78b231c5fad3895a1f2888e97427180b93d"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8d8838fef39a4ab84960ec57aa258b16",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 8879611,
            "upload_time": "2023-11-22T18:07:51",
            "upload_time_iso_8601": "2023-11-22T18:07:51.140501Z",
            "url": "https://files.pythonhosted.org/packages/94/e7/12bc1ea7a6dbc1d35dcc6d4281aa126b61272f728d765b42a12f6d364798/mnt.pyfiction-0.5.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f3fd4940b99aad4b763a3ec9e245e596b31f1965f8f41d698a8ec24fb35b8aa",
                "md5": "0a55d4c0447e475b0ca35108d8c6e2f1",
                "sha256": "625c8494fe023c660b5d620e1257848a738fb66632ac97341706ed1c7b0c88f5"
            },
            "downloads": -1,
            "filename": "mnt.pyfiction-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "0a55d4c0447e475b0ca35108d8c6e2f1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 4234877,
            "upload_time": "2023-11-22T18:07:53",
            "upload_time_iso_8601": "2023-11-22T18:07:53.377197Z",
            "url": "https://files.pythonhosted.org/packages/0f/3f/d4940b99aad4b763a3ec9e245e596b31f1965f8f41d698a8ec24fb35b8aa/mnt.pyfiction-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-22 18:07:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cda-tum",
    "github_project": "fiction",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "mnt.pyfiction"
}
        
Elapsed time: 0.14179s