pywaveflow 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pywaveflow-0.0.1/PKG-INFO +35 -0
- pywaveflow-0.0.1/README.md +18 -0
- pywaveflow-0.0.1/pyproject.toml +27 -0
- pywaveflow-0.0.1/pywaveflow.egg-info/PKG-INFO +35 -0
- pywaveflow-0.0.1/pywaveflow.egg-info/SOURCES.txt +7 -0
- pywaveflow-0.0.1/pywaveflow.egg-info/dependency_links.txt +1 -0
- pywaveflow-0.0.1/pywaveflow.egg-info/top_level.txt +1 -0
- pywaveflow-0.0.1/setup.cfg +4 -0
- pywaveflow-0.0.1/waveflow/__init__.py +15 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pywaveflow
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A Python-native framework for wireless algorithm-hardware co-design (early development).
|
|
5
|
+
Author: Sundeep Rangan
|
|
6
|
+
License: Waveflow Research License (non-commercial)
|
|
7
|
+
Project-URL: Homepage, https://github.com/sdrangan/waveflow
|
|
8
|
+
Project-URL: Repository, https://github.com/sdrangan/waveflow
|
|
9
|
+
Keywords: hardware,fpga,hls,dsp,wireless,fixed-point,vitis,co-design
|
|
10
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering
|
|
13
|
+
Classifier: Topic :: Software Development :: Code Generators
|
|
14
|
+
Classifier: License :: Other/Proprietary License
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Waveflow
|
|
19
|
+
|
|
20
|
+
**From waveform to silicon — in Python.**
|
|
21
|
+
|
|
22
|
+
Waveflow is a Python-native framework for **algorithm–hardware co-design** — describe a
|
|
23
|
+
signal-processing datapath once in Python, simulate it *fast* and *bit-exact*, and
|
|
24
|
+
generate its hardware implementation from the same source. Its flagship domain is
|
|
25
|
+
**wireless**, but it fits any project for efficiently realizing complex signal-processing
|
|
26
|
+
algorithms in hardware.
|
|
27
|
+
|
|
28
|
+
> ⚠️ **Early development.** This PyPI entry reserves the name; the project is under active
|
|
29
|
+
> development and not yet released as a package. Install the current version from source:
|
|
30
|
+
>
|
|
31
|
+
> ```bash
|
|
32
|
+
> pip install git+https://github.com/sdrangan/waveflow.git
|
|
33
|
+
> ```
|
|
34
|
+
|
|
35
|
+
Documentation, examples, and status: **https://github.com/sdrangan/waveflow**
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Waveflow
|
|
2
|
+
|
|
3
|
+
**From waveform to silicon — in Python.**
|
|
4
|
+
|
|
5
|
+
Waveflow is a Python-native framework for **algorithm–hardware co-design** — describe a
|
|
6
|
+
signal-processing datapath once in Python, simulate it *fast* and *bit-exact*, and
|
|
7
|
+
generate its hardware implementation from the same source. Its flagship domain is
|
|
8
|
+
**wireless**, but it fits any project for efficiently realizing complex signal-processing
|
|
9
|
+
algorithms in hardware.
|
|
10
|
+
|
|
11
|
+
> ⚠️ **Early development.** This PyPI entry reserves the name; the project is under active
|
|
12
|
+
> development and not yet released as a package. Install the current version from source:
|
|
13
|
+
>
|
|
14
|
+
> ```bash
|
|
15
|
+
> pip install git+https://github.com/sdrangan/waveflow.git
|
|
16
|
+
> ```
|
|
17
|
+
|
|
18
|
+
Documentation, examples, and status: **https://github.com/sdrangan/waveflow**
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "pywaveflow"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "A Python-native framework for wireless algorithm-hardware co-design (early development)."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
license = { text = "Waveflow Research License (non-commercial)" }
|
|
8
|
+
authors = [{ name = "Sundeep Rangan" }]
|
|
9
|
+
keywords = ["hardware", "fpga", "hls", "dsp", "wireless", "fixed-point", "vitis", "co-design"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
12
|
+
"Programming Language :: Python :: 3",
|
|
13
|
+
"Topic :: Scientific/Engineering",
|
|
14
|
+
"Topic :: Software Development :: Code Generators",
|
|
15
|
+
"License :: Other/Proprietary License",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://github.com/sdrangan/waveflow"
|
|
20
|
+
Repository = "https://github.com/sdrangan/waveflow"
|
|
21
|
+
|
|
22
|
+
[build-system]
|
|
23
|
+
requires = ["setuptools", "wheel"]
|
|
24
|
+
build-backend = "setuptools.build_meta"
|
|
25
|
+
|
|
26
|
+
[tool.setuptools.packages.find]
|
|
27
|
+
include = ["waveflow*"]
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pywaveflow
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A Python-native framework for wireless algorithm-hardware co-design (early development).
|
|
5
|
+
Author: Sundeep Rangan
|
|
6
|
+
License: Waveflow Research License (non-commercial)
|
|
7
|
+
Project-URL: Homepage, https://github.com/sdrangan/waveflow
|
|
8
|
+
Project-URL: Repository, https://github.com/sdrangan/waveflow
|
|
9
|
+
Keywords: hardware,fpga,hls,dsp,wireless,fixed-point,vitis,co-design
|
|
10
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering
|
|
13
|
+
Classifier: Topic :: Software Development :: Code Generators
|
|
14
|
+
Classifier: License :: Other/Proprietary License
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Waveflow
|
|
19
|
+
|
|
20
|
+
**From waveform to silicon — in Python.**
|
|
21
|
+
|
|
22
|
+
Waveflow is a Python-native framework for **algorithm–hardware co-design** — describe a
|
|
23
|
+
signal-processing datapath once in Python, simulate it *fast* and *bit-exact*, and
|
|
24
|
+
generate its hardware implementation from the same source. Its flagship domain is
|
|
25
|
+
**wireless**, but it fits any project for efficiently realizing complex signal-processing
|
|
26
|
+
algorithms in hardware.
|
|
27
|
+
|
|
28
|
+
> ⚠️ **Early development.** This PyPI entry reserves the name; the project is under active
|
|
29
|
+
> development and not yet released as a package. Install the current version from source:
|
|
30
|
+
>
|
|
31
|
+
> ```bash
|
|
32
|
+
> pip install git+https://github.com/sdrangan/waveflow.git
|
|
33
|
+
> ```
|
|
34
|
+
|
|
35
|
+
Documentation, examples, and status: **https://github.com/sdrangan/waveflow**
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
waveflow
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""Waveflow -- a Python-native framework for wireless algorithm-hardware co-design.
|
|
2
|
+
|
|
3
|
+
From waveform to silicon, in Python: describe a signal-processing datapath once,
|
|
4
|
+
simulate it fast and bit-exact, and generate its hardware implementation from the
|
|
5
|
+
same source.
|
|
6
|
+
|
|
7
|
+
This is an early-development placeholder release that reserves the name on PyPI.
|
|
8
|
+
The project is under active development; install the current version from source::
|
|
9
|
+
|
|
10
|
+
pip install git+https://github.com/sdrangan/waveflow.git
|
|
11
|
+
|
|
12
|
+
Documentation and status: https://github.com/sdrangan/waveflow
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
__version__ = "0.0.1"
|