mirror of
https://github.com/ehw-fit/ariths-gen.git
synced 2025-04-19 13:30:56 +01:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
7db1276d8f | ||
![]() |
240320200b | ||
![]() |
741a5ceab1 |
11
README.md
11
README.md
@ -1,5 +1,6 @@
|
|||||||
# ArithsGen – tool for arithmetic circuits generation
|
# ArithsGen – tool for arithmetic circuits generation
|
||||||
[](https://www.python.org/)
|
[](https://www.python.org/)
|
||||||
|
[](https://pypi.python.org/pypi/ariths-gen/)
|
||||||
[](https://ehw-fit.github.io/ariths-gen)
|
[](https://ehw-fit.github.io/ariths-gen)
|
||||||
[](https://arxiv.org/abs/2203.04649)
|
[](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).
|
||||||
|
|
||||||
|
@ -16,3 +16,4 @@ from .multi_bit_circuits import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
from .pdk import *
|
from .pdk import *
|
||||||
|
from . __version__ import __version__
|
1
ariths_gen/__version__.py
Normal file
1
ariths_gen/__version__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
__version__ = "1.1.2"
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user