pywaveflow 0.0.1__py3-none-any.whl

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.
@@ -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,5 @@
1
+ waveflow/__init__.py,sha256=nefSdAqDZ4gYfcwsHXhcu0NXfc3uKDFpwIS-yPHTrXQ,579
2
+ pywaveflow-0.0.1.dist-info/METADATA,sha256=XNBriLAEcNy5gW7Q_XYfsO9PHcM_h3IXstSfNCc_UVY,1538
3
+ pywaveflow-0.0.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
4
+ pywaveflow-0.0.1.dist-info/top_level.txt,sha256=hhcNu0Uu1ZrMo9nP_LCbb2GNJNfTOXCzNuF0ZGRI3xQ,9
5
+ pywaveflow-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ waveflow
waveflow/__init__.py ADDED
@@ -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"