Compare commits

...

3 Commits
main ... v1.3

Author SHA1 Message Date
Vojta
7db1276d8f setup cfg
Some checks failed
BUILD / build (push) Failing after 38s
BUILD / test (push) Has been skipped
BUILD / Python ${{ matrix.python-version }} test (3.10) (push) Has been skipped
BUILD / Python ${{ matrix.python-version }} test (3.11) (push) Has been skipped
BUILD / Python ${{ matrix.python-version }} test (3.7) (push) Has been skipped
BUILD / Python ${{ matrix.python-version }} test (3.8) (push) Has been skipped
BUILD / Python ${{ matrix.python-version }} test (3.9) (push) Has been skipped
BUILD / documentation (push) Has been skipped
2024-12-13 13:10:10 +01:00
Vojta
240320200b pypi version 2024-12-13 13:06:34 +01:00
Vojta Mrazek
741a5ceab1
Merge pull request #28 from ehw-fit/main
PyPi
2024-12-13 12:55:53 +01:00
4 changed files with 14 additions and 1 deletions

View File

@ -1,5 +1,6 @@
# ArithsGen tool for arithmetic circuits generation # ArithsGen tool for arithmetic circuits generation
[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/) [![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
[![PyPI version fury.io](https://badge.fury.io/py/ariths-gen.svg)](https://pypi.python.org/pypi/ariths-gen/)
[![Documentation](https://img.shields.io/badge/api-reference-blue.svg)](https://ehw-fit.github.io/ariths-gen) [![Documentation](https://img.shields.io/badge/api-reference-blue.svg)](https://ehw-fit.github.io/ariths-gen)
[![arXiv](https://img.shields.io/badge/arXiv-2203.04649-b31b1b.svg)](https://arxiv.org/abs/2203.04649) [![arXiv](https://img.shields.io/badge/arXiv-2203.04649-b31b1b.svg)](https://arxiv.org/abs/2203.04649)
@ -26,6 +27,16 @@ When you use this tool in your work/research, please cite the following article:
} }
``` ```
## Instalation
```bash
pip install ariths-gen
python << EOF
import ariths_gen
print(ariths_gen.__version__)
EOF
```
## Prebuild circuits ## Prebuild circuits
To enable fast work with the circuits, we published pre-build arithmetic circuits in various formats in [generated_circuits](generated_circuits) folder and as a [Release](https://github.com/ehw-fit/ariths-gen/releases). To enable fast work with the circuits, we published pre-build arithmetic circuits in various formats in [generated_circuits](generated_circuits) folder and as a [Release](https://github.com/ehw-fit/ariths-gen/releases).

View File

@ -16,3 +16,4 @@ from .multi_bit_circuits import (
) )
from .pdk import * from .pdk import *
from . __version__ import __version__

View File

@ -0,0 +1 @@
__version__ = "1.1.2"

View File

@ -1,7 +1,7 @@
[metadata] [metadata]
name = ariths_gen name = ariths_gen
description = Arithmetic circuits generator to Verilog, BLIF, C etc. description = Arithmetic circuits generator to Verilog, BLIF, C etc.
version = attr: ariths_gen.VERSION version = attr: ariths_gen.__version__
long_description = file: README.md long_description = file: README.md
long_description_content_type = text/markdown long_description_content_type = text/markdown
license = MIT license = MIT