Skip to content

Commit 9f9642e

Browse files
committed
Updating pythondata-cpu-openc906 to 0.0.post159
Updated data to v0.0-9-gb0c06eb1f8b3 based on b0c06eb from https://github.com/XUANTIE-RV/openc906. > commit b0c06eb > Merge: af5614d 8b1e1bd > Author: Yunhai <[email protected]> > Date: Fri Jun 28 20:18:56 2024 +0800 > > Merge pull request #16 from xuantiecpu/update_doc > > update manuals and datasheet > Updated using 0.0.post150 from https://github.com/litex-hub/litex-data-auto
0 parents  commit 9f9642e

File tree

11 files changed

+612
-0
lines changed

11 files changed

+612
-0
lines changed

Diff for: .gitattributes

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
**/verilog/**/*.v linguist-language=Verilog
2+
**/verilog/**/*.vh linguist-language=Verilog
3+
4+
**/system_verilog/**/*.v linguist-language=SystemVerilog
5+
**/system_verilog/**/*.sv linguist-language=SystemVerilog
6+
**/system_verilog/**/*.vh linguist-language=SystemVerilog
7+
8+
**/vhdl/**/*.vhdl linguist-language=VHDL
9+
**/vhdl/**/*.vh linguist-language=VHDL
10+
11+
**/gen-src/** linguist-vendored
12+
**/generated/** linguist-vendored
13+
**/third_party/** linguist-vendored

Diff for: .github/workflows/publish-to-pypi.yml

+120
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
name: PyPI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- main
8+
9+
jobs:
10+
sdist:
11+
name: sdist
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
with:
17+
# Always clone the full depth so git-describe works.
18+
fetch-depth: 0
19+
submodules: true
20+
21+
- name: Set up Python 🐍 3
22+
uses: actions/setup-python@v2
23+
with:
24+
python-version: 3.x
25+
26+
- name: Install build dependencies
27+
run: |
28+
pip install -U pip
29+
pip install -U setuptools wheel twine
30+
31+
- name: Install package dependencies
32+
run: |
33+
python setup.py install
34+
35+
- name: Run smoke test
36+
run: |
37+
python test.py
38+
39+
- name: Build distribution 📦
40+
run: |
41+
python setup.py sdist
42+
rm dist/*.egg
43+
44+
- name: Check distribution 📦
45+
run: |
46+
du -h dist/*
47+
twine check dist/*
48+
49+
- name: Publish to Test PyPI
50+
env:
51+
TWINE_USERNAME: __token__
52+
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
53+
run: |
54+
twine upload --skip-existing --repository testpypi dist/*
55+
56+
- name: Publish to PyPI
57+
env:
58+
TWINE_USERNAME: __token__
59+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
60+
run: |
61+
twine upload --skip-existing dist/*
62+
63+
wheels:
64+
strategy:
65+
matrix:
66+
python-version: [ '3.x' ]
67+
fail-fast: false
68+
69+
name: ${{ matrix.python-version }}
70+
runs-on: ubuntu-latest
71+
72+
steps:
73+
- uses: actions/checkout@v4
74+
with:
75+
# Always clone the full depth so git-describe works.
76+
fetch-depth: 0
77+
submodules: true
78+
79+
- name: Set up Python 🐍 ${{ matrix.python-version }}
80+
uses: actions/setup-python@v5
81+
with:
82+
python-version: ${{ matrix.python-version }}
83+
84+
- name: Install build dependencies
85+
run: |
86+
pip install -U pip
87+
pip install -U setuptools wheel twine
88+
89+
- name: Install package dependencies
90+
run: |
91+
python setup.py install
92+
93+
- name: Run smoke test
94+
run: |
95+
python test.py
96+
97+
- name: Build distribution 📦
98+
run: |
99+
python setup.py bdist_wheel
100+
rm dist/*.egg
101+
102+
- name: Check distribution 📦
103+
run: |
104+
du -h dist/*
105+
twine check dist/*
106+
107+
- name: Publish to Test PyPI
108+
env:
109+
TWINE_USERNAME: __token__
110+
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
111+
run: |
112+
twine upload --skip-existing --repository testpypi dist/*
113+
114+
- name: Publish to PyPI
115+
env:
116+
TWINE_USERNAME: __token__
117+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
118+
run: |
119+
twine upload --skip-existing dist/*
120+

Diff for: .gitignore

+135
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
# Usually these files are written by a python script from a template
32+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.nox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
*.py,cover
51+
.hypothesis/
52+
.pytest_cache/
53+
cover/
54+
55+
# Translations
56+
*.mo
57+
*.pot
58+
59+
# Django stuff:
60+
*.log
61+
local_settings.py
62+
db.sqlite3
63+
db.sqlite3-journal
64+
65+
# Flask stuff:
66+
instance/
67+
.webassets-cache
68+
69+
# Scrapy stuff:
70+
.scrapy
71+
72+
# Sphinx documentation
73+
docs/_build/
74+
75+
# PyBuilder
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
# For a library or package, you might want to ignore these files since the code is
87+
# intended to run in multiple environments; otherwise, check them in:
88+
# .python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
98+
__pypackages__/
99+
100+
# Celery stuff
101+
celerybeat-schedule
102+
celerybeat.pid
103+
104+
# SageMath parsed files
105+
*.sage.py
106+
107+
# Environments
108+
.env
109+
.venv
110+
env/
111+
venv/
112+
ENV/
113+
env.bak/
114+
venv.bak/
115+
116+
# Spyder project settings
117+
.spyderproject
118+
.spyproject
119+
120+
# Rope project settings
121+
.ropeproject
122+
123+
# mkdocs documentation
124+
/site
125+
126+
# mypy
127+
.mypy_cache/
128+
.dmypy.json
129+
dmypy.json
130+
131+
# Pyre type checker
132+
.pyre/
133+
134+
# pytype static type analyzer
135+
.pytype/

Diff for: LICENSE

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
Apache License
2+
Version 2.0, January 2004
3+
http://www.apache.org/licenses/
4+
5+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6+
7+
1. Definitions.
8+
9+
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
10+
11+
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
12+
13+
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
14+
15+
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
16+
17+
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
18+
19+
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
20+
21+
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
22+
23+
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
24+
25+
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
26+
27+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
28+
29+
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
30+
31+
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
32+
33+
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
34+
35+
(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
36+
37+
(b) You must cause any modified files to carry prominent notices stating that You changed the files; and
38+
39+
(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
40+
41+
(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
42+
43+
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
44+
45+
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
46+
47+
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
48+
49+
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
50+
51+
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
52+
53+
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
54+
55+
END OF TERMS AND CONDITIONS
56+
57+
APPENDIX: How to apply the Apache License to your work.
58+
59+
To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
60+
61+
Copyright [yyyy] [name of copyright owner]
62+
63+
Licensed under the Apache License, Version 2.0 (the "License");
64+
you may not use this file except in compliance with the License.
65+
You may obtain a copy of the License at
66+
67+
http://www.apache.org/licenses/LICENSE-2.0
68+
69+
Unless required by applicable law or agreed to in writing, software
70+
distributed under the License is distributed on an "AS IS" BASIS,
71+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
72+
See the License for the specific language governing permissions and
73+
limitations under the License.

Diff for: MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
graft pythondata_cpu_openc906/verilog/
2+
global-exclude *.py[cod]

Diff for: Makefile

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
ACTIVATE=[[ -e venv/bin/activate ]] && source venv/bin/activate;
2+
3+
SHELL := /bin/bash
4+
5+
clean:
6+
rm -rf build dist pythondata_*.egg-info
7+
8+
.PHONY: clean
9+
10+
venv-clean:
11+
rm -rf venv
12+
13+
.PHONY: venv-clean
14+
15+
venv:
16+
virtualenv --python=python3 venv
17+
${ACTIVATE} pip install twine
18+
19+
.PHONY: venv
20+
21+
build:
22+
${ACTIVATE} python setup.py sdist bdist_wheel
23+
@rm -f dist/*.egg
24+
25+
.PHONY: build
26+
27+
# PYPI_TEST = --repository-url https://test.pypi.org/legacy/
28+
PYPI_TEST = --repository testpypi
29+
30+
upload-test: build
31+
@rm -f dist/*.egg
32+
${ACTIVATE} twine upload ${PYPI_TEST} dist/*
33+
34+
.PHONY: upload-test
35+
36+
upload: build
37+
@rm -f dist/*.egg
38+
${ACTIVATE} twine upload --verbose dist/*
39+
40+
.PHONY: upload
41+
42+
install:
43+
${ACTIVATE} python setup.py install
44+
45+
.PHONY: install
46+
47+
test:
48+
${ACTIVATE} python test.py
49+
50+
.PHONY: test

0 commit comments

Comments
 (0)