pyibis-ami 7.2.3__py3-none-any.whl → 7.2.4__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.
@@ -1,134 +1,133 @@
1
- Metadata-Version: 2.4
2
- Name: pyibis-ami
3
- Version: 7.2.3
4
- Summary: Facilitates working directly with IBIS-AMI DLLs from the Python command prompt.
5
- Author-email: David Banas <capn.freako@gmail.com>
6
- License-Expression: BSD-3-Clause
7
- Project-URL: Documentation, https://pyibis-ami.readthedocs.io/en/latest/
8
- Project-URL: Wiki, https://github.com/capn-freako/PyAMI/wiki
9
- Project-URL: GitHub, https://github.com/capn-freako/PyAMI
10
- Project-URL: PyPi, https://pypi.org/project/PyIBIS-AMI/
11
- Keywords: ibis-ami
12
- Classifier: Development Status :: 5 - Production/Stable
13
- Classifier: Environment :: Console
14
- Classifier: Intended Audience :: Developers
15
- Classifier: Operating System :: OS Independent
16
- Classifier: Programming Language :: Python
17
- Classifier: Programming Language :: Python :: 3
18
- Classifier: Programming Language :: Python :: 3.10
19
- Classifier: Programming Language :: Python :: 3.11
20
- Classifier: Programming Language :: Python :: 3.12
21
- Classifier: Programming Language :: Python :: Implementation :: CPython
22
- Classifier: Topic :: System :: Emulators
23
- Classifier: Topic :: Utilities
24
- Requires-Python: <3.13,>=3.10
25
- Description-Content-Type: text/markdown
26
- License-File: LICENSE
27
- Requires-Dist: chaco>=6.0.0
28
- Requires-Dist: click>=8.1.3
29
- Requires-Dist: empy>=3.3.4
30
- Requires-Dist: importlib_resources
31
- Requires-Dist: matplotlib>=3.6.1
32
- Requires-Dist: numpy<1.27,>=1.26
33
- Requires-Dist: papermill
34
- Requires-Dist: parsec>=3.15
35
- Requires-Dist: scipy>=1.9
36
- Dynamic: license-file
37
-
38
- [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/capn-freako/PyAMI/master.svg)](https://results.pre-commit.ci/latest/github/capn-freako/PyAMI/master)
39
-
40
- # PyIBIS-AMI
41
-
42
- PyIBIS-AMI is a Python package of tools useful in the development and testing of IBIS-AMI models.
43
- This library is used in [PyBERT](https://github.com/capn-freako/PyBERT) and also provides two
44
- command line applications.
45
-
46
- It can be installed via: `pip install PyIBIS-AMI`.
47
-
48
- [View API/Developer's Documentation.](https://pyibis-ami.readthedocs.io/en/latest/)
49
-
50
- ## Command Line Tools
51
-
52
- ### Run IBIS-AMI Model Testing Notebook
53
-
54
- ```shell
55
- $ run-notebook -h
56
- Usage: run-notebook [OPTIONS] IBIS_FILE BIT_RATE
57
-
58
- Run a *Jupyter* notebook on an IBIS-AMI model file.
59
-
60
- Options:
61
- -n, --notebook PATH Override the default notebook file name.
62
- -o, --out-dir PATH Override the name of the directory in which to place
63
- the results.
64
- -p, --params TEXT Directory (or, file) containing configuration sweeps.
65
- --debug Provide extra debugging information.
66
- --is_tx Flags a Tx model.
67
- --nspui INTEGER Number of samples per unit interval. [default: 32]
68
- --nbits INTEGER Number of bits to run in simulations. [default: 200]
69
- --plot-t-max FLOAT Maximum time value for plots (s). [default: 5e-10]
70
- --f-max FLOAT Maximum frequency for transfer functions (Hz).
71
- [default: 40000000000.0]
72
- --f-step FLOAT Frequency step for transfer functions (Hz). [default:
73
- 10000000.0]
74
- --fig-x INTEGER x-dimmension for plot figures (in). [default: 10]
75
- --fig-y INTEGER y-dimmension for plot figures (in). [default: 3]
76
- --version Show the version and exit.
77
- -h, --help Show this message and exit.
78
- ```
79
-
80
- ### AMI Config
81
-
82
- ```shell
83
- ami_config -h
84
- Usage: ami_config [OPTIONS] PY_FILE
85
-
86
- Configure IBIS-AMI model C++ source code, IBIS model, and AMI file.
87
-
88
- py_file: name of model configuration file (*.py)
89
-
90
- Options:
91
- -h, --help Show this message and exit.
92
- ```
93
-
94
- ### Run Tests
95
-
96
- ```shell
97
- run_tests -h
98
- Usage: run_tests [OPTIONS] [TESTS]...
99
-
100
- Run a series of tests on a AMI model DLL file.
101
-
102
- If no tests are specified on the command line, run all tests found in
103
- `test_dir'. (See `-t' option.)
104
-
105
- usage: %prog [options] [test1 [test2 ...]]
106
-
107
- Tests are written in the EmPy templating language, and produce XML output.
108
- (See the examples provided in the `examples' directory of the `pyibisami'
109
- Python package.)
110
-
111
- Test results should be viewed by loading the XML output file into a Web
112
- browser. By default, the XML output file refers to the supplied XSLT file,
113
- `test_results.xsl'. It is possible that you may need to copy this file
114
- from the pyibisami package directory to your local working directory, in
115
- order to avoid file loading errors in your Web browser.
116
-
117
- Options:
118
- -t, --test_dir PATH Sets the name of the directory from which tests are
119
- taken.
120
- -m, --model PATH Sets the AMI model DLL file name.
121
- -p, --params TEXT List of lists of model configurations. Format:
122
- <filename> or [(name, [(label, ({AMI params., in
123
- "key:val" format},{Model params., in "key:val"
124
- format})), ...]), ...]
125
- -x, --xml_file PATH Sets the name of the XML output file. You should load
126
- this file into your Web browser after the program
127
- completion.
128
- -r, --ref_dir PATH Sets the name of the directory from which reference
129
- waveforms are taken.
130
- -o, --out_dir PATH Sets the name of the directory in which to place the
131
- results.
132
- -v, --version TEXT Show program version info and exit.
133
- -h, --help Show this message and exit.
134
- ```
1
+ Metadata-Version: 2.4
2
+ Name: pyibis-ami
3
+ Version: 7.2.4
4
+ Summary: Facilitates working directly with IBIS-AMI DLLs from the Python command prompt.
5
+ Author-email: David Banas <capn.freako@gmail.com>
6
+ Project-URL: Documentation, https://pyibis-ami.readthedocs.io/en/latest/
7
+ Project-URL: Wiki, https://github.com/capn-freako/PyAMI/wiki
8
+ Project-URL: GitHub, https://github.com/capn-freako/PyAMI
9
+ Project-URL: PyPi, https://pypi.org/project/PyIBIS-AMI/
10
+ Keywords: ibis-ami
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Environment :: Console
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: Implementation :: CPython
21
+ Classifier: Topic :: System :: Emulators
22
+ Classifier: Topic :: Utilities
23
+ Requires-Python: <3.13,>=3.10
24
+ Description-Content-Type: text/markdown
25
+ License-File: LICENSE
26
+ Requires-Dist: chaco>=6.0.0
27
+ Requires-Dist: click>=8.1.3
28
+ Requires-Dist: empy>=3.3.4
29
+ Requires-Dist: importlib_resources
30
+ Requires-Dist: matplotlib>=3.6.1
31
+ Requires-Dist: numpy<1.27,>=1.26
32
+ Requires-Dist: papermill
33
+ Requires-Dist: parsec>=3.15
34
+ Requires-Dist: scipy>=1.9
35
+ Dynamic: license-file
36
+
37
+ [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/capn-freako/PyAMI/master.svg)](https://results.pre-commit.ci/latest/github/capn-freako/PyAMI/master)
38
+
39
+ # PyIBIS-AMI
40
+
41
+ PyIBIS-AMI is a Python package of tools useful in the development and testing of IBIS-AMI models.
42
+ This library is used in [PyBERT](https://github.com/capn-freako/PyBERT) and also provides two
43
+ command line applications.
44
+
45
+ It can be installed via: `pip install PyIBIS-AMI`.
46
+
47
+ [View API/Developer's Documentation.](https://pyibis-ami.readthedocs.io/en/latest/)
48
+
49
+ ## Command Line Tools
50
+
51
+ ### Run IBIS-AMI Model Testing Notebook
52
+
53
+ ```shell
54
+ $ run-notebook -h
55
+ Usage: run-notebook [OPTIONS] IBIS_FILE BIT_RATE
56
+
57
+ Run a *Jupyter* notebook on an IBIS-AMI model file.
58
+
59
+ Options:
60
+ -n, --notebook PATH Override the default notebook file name.
61
+ -o, --out-dir PATH Override the name of the directory in which to place
62
+ the results.
63
+ -p, --params TEXT Directory (or, file) containing configuration sweeps.
64
+ --debug Provide extra debugging information.
65
+ --is_tx Flags a Tx model.
66
+ --nspui INTEGER Number of samples per unit interval. [default: 32]
67
+ --nbits INTEGER Number of bits to run in simulations. [default: 200]
68
+ --plot-t-max FLOAT Maximum time value for plots (s). [default: 5e-10]
69
+ --f-max FLOAT Maximum frequency for transfer functions (Hz).
70
+ [default: 40000000000.0]
71
+ --f-step FLOAT Frequency step for transfer functions (Hz). [default:
72
+ 10000000.0]
73
+ --fig-x INTEGER x-dimmension for plot figures (in). [default: 10]
74
+ --fig-y INTEGER y-dimmension for plot figures (in). [default: 3]
75
+ --version Show the version and exit.
76
+ -h, --help Show this message and exit.
77
+ ```
78
+
79
+ ### AMI Config
80
+
81
+ ```shell
82
+ ami_config -h
83
+ Usage: ami_config [OPTIONS] PY_FILE
84
+
85
+ Configure IBIS-AMI model C++ source code, IBIS model, and AMI file.
86
+
87
+ py_file: name of model configuration file (*.py)
88
+
89
+ Options:
90
+ -h, --help Show this message and exit.
91
+ ```
92
+
93
+ ### Run Tests
94
+
95
+ ```shell
96
+ run_tests -h
97
+ Usage: run_tests [OPTIONS] [TESTS]...
98
+
99
+ Run a series of tests on a AMI model DLL file.
100
+
101
+ If no tests are specified on the command line, run all tests found in
102
+ `test_dir'. (See `-t' option.)
103
+
104
+ usage: %prog [options] [test1 [test2 ...]]
105
+
106
+ Tests are written in the EmPy templating language, and produce XML output.
107
+ (See the examples provided in the `examples' directory of the `pyibisami'
108
+ Python package.)
109
+
110
+ Test results should be viewed by loading the XML output file into a Web
111
+ browser. By default, the XML output file refers to the supplied XSLT file,
112
+ `test_results.xsl'. It is possible that you may need to copy this file
113
+ from the pyibisami package directory to your local working directory, in
114
+ order to avoid file loading errors in your Web browser.
115
+
116
+ Options:
117
+ -t, --test_dir PATH Sets the name of the directory from which tests are
118
+ taken.
119
+ -m, --model PATH Sets the AMI model DLL file name.
120
+ -p, --params TEXT List of lists of model configurations. Format:
121
+ <filename> or [(name, [(label, ({AMI params., in
122
+ "key:val" format},{Model params., in "key:val"
123
+ format})), ...]), ...]
124
+ -x, --xml_file PATH Sets the name of the XML output file. You should load
125
+ this file into your Web browser after the program
126
+ completion.
127
+ -r, --ref_dir PATH Sets the name of the directory from which reference
128
+ waveforms are taken.
129
+ -o, --out_dir PATH Sets the name of the directory in which to place the
130
+ results.
131
+ -v, --version TEXT Show program version info and exit.
132
+ -h, --help Show this message and exit.
133
+ ```
@@ -0,0 +1,27 @@
1
+ pyibis_ami-7.2.4.dist-info/licenses/LICENSE,sha256=iUtKhGdFJ8yC7IpQuUiwjveBUd6Uxk4tZ68yKfStPrM,1293
2
+ pyibisami/IBIS_AMI_Checker.ipynb,sha256=3LwppSqwVuPD85kVKdXOdtXdDKr9ba8fib1_IJ1jjMc,1390165
3
+ pyibisami/IBIS_AMI_Tester.ipynb,sha256=ywuwhAChAZXmk_Q1fkmS8scN6ZuV6gLteG_KfQa8NQ8,784499
4
+ pyibisami/__init__.py,sha256=DxWwWtfpqEKhGY9tdQqjjnEYR7tTC7OyPSfnKH-g0Qs,668
5
+ pyibisami/__main__.py,sha256=-2FQZACAF5NBVMl02Pf2aq4-gKvgjv2VyMGuIwhpX-w,317
6
+ pyibisami/common.py,sha256=T3FMCHYx10f0-16U092l_xDHaaJmkIuZ-FiHJ0mnM6A,1182
7
+ pyibisami/ami/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ pyibisami/ami/config.py,sha256=fXfROquueeUX5larasZ8ia_FuvfAyuvmyW67fBOQA5I,10804
9
+ pyibisami/ami/generic.ami.em,sha256=EZpswZid-iRDDBnUuR3lL0fd1M6o6SCaoJKGeGALwZI,499
10
+ pyibisami/ami/generic.ibs.em,sha256=Zz1kW6_nkMVFKBUa-Rfz5qFy7qmc3I6NDMYSK1NQd9M,7677
11
+ pyibisami/ami/model.py,sha256=5ibgvCZ2H-Xf8AWQwHJQPIsevcesHRWWHJTeI4vrFuE,24982
12
+ pyibisami/ami/parameter.py,sha256=3io5qHvWPUzCo8dqM-AzOusjdsJbMgNT3we4qD68adE,11365
13
+ pyibisami/ami/parser.py,sha256=X0vEZAU6jisG8agDTj5YksnYBXcq0nhHh97qslb5vU8,25872
14
+ pyibisami/ami/reserved_parameter_names.py,sha256=aPBBVqmSQW3ysyNlOtn8Z1P8dt8qNTrXnJW97Pfm5HE,1786
15
+ pyibisami/ibis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ pyibisami/ibis/file.py,sha256=U1T0P-HveRgK5T7csNIJHV9ddi40PqDdOnBnoQcKimI,12064
17
+ pyibisami/ibis/model.py,sha256=DaAn35OhWkPkIuTQMwNIHZ5f1-s4Xb0H21UMAKFBE4I,16349
18
+ pyibisami/ibis/parser.py,sha256=sADLkQgbIp0oLNIUCLlNN5FvHnM4-Q5gQSH1_dYpJhU,13611
19
+ pyibisami/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ pyibisami/tools/run_notebook.py,sha256=p4FRdvEGWwjylHjgoeCXrbK2viqo_466Jfm3FG4UlCM,5450
21
+ pyibisami/tools/run_tests.py,sha256=Kaopc0a3XxSuatRtPgvgT5JukIB-My4Gfxwn5ASEZh4,9344
22
+ pyibisami/tools/test_results.xsl,sha256=RQv9oiu6XQ8Q_swO0ak1FGdL28h3ucJr_FAWsgD001I,1662
23
+ pyibis_ami-7.2.4.dist-info/METADATA,sha256=8rccRiJ__e7fWX0a5WyhVHT1YCS63b8C5_bBHBypShM,5240
24
+ pyibis_ami-7.2.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
25
+ pyibis_ami-7.2.4.dist-info/entry_points.txt,sha256=x2QobJi2Pu25LgUeWg60XZzOWH8j2R60oWGN-1Z7uVA,149
26
+ pyibis_ami-7.2.4.dist-info/top_level.txt,sha256=k2KfR4t4tJ47HrnzvSh77w9N2Xyz8_uUusJLbqXK0g4,10
27
+ pyibis_ami-7.2.4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.0.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,8 +1,8 @@
1
- Copyright (c) 2012, David Banas
2
- All rights reserved World wide.
3
-
4
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5
-
6
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1
+ Copyright (c) 2012, David Banas
2
+ All rights reserved World wide.
3
+
4
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5
+
6
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.