-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a1045a
commit a92da3e
Showing
2 changed files
with
69 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,66 @@ | ||
# icdk (IC Deveplopment Toolkit) | ||
# icdk (IC Deveplopment Toolkit) | ||
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/uvmgen) | ||
[![PyPI - Version](https://img.shields.io/pypi/v/uvmgen)](https://pypi.org/project/uvmgen) | ||
![GitHub language count](https://img.shields.io/github/languages/count/Dragon-Git/icdk?logo=python) | ||
[![Latest Release](https://img.shields.io/github/v/release/Dragon-Git/icdk?color=blue&label=Latest%20Release)](https://github.com/Dragon-Git/icdk/releases/latest) | ||
[![downloads](https://pepy.tech/badge/uvmgen)](https://pepy.tech/project/uvmgen) | ||
[![CI](https://github.com/Dragon-Git/icdk/actions/workflows/python_package.yml/badge.svg)](https://github.com/Dragon-Git/icdk/actions/workflows/python_package.yml) | ||
![GitHub deployments](https://img.shields.io/github/deployments/Dragon-Git/icdk/release) | ||
|
||
--- | ||
## Introduction | ||
|
||
uvmgen is a command-line interface (CLI) program for generating testbench structures based on a provided JSON configuration file. This user guide provides detailed information on how to use uvmgen effectively. | ||
|
||
## Installing | ||
Install from [PyPi](https://pypi.org/project/uvmgen) using pip: | ||
```bash | ||
python3 -m pip install uvmgen | ||
``` | ||
## Using steps | ||
- python3 -m pip install uvmgen | ||
- if you want to generate a complete UVM environment , modify typeical. json in example file | ||
- if you want to generate a agent or others, modify your expected json in base_pkg file | ||
- enter the json folder to execute uvmgen ***.json command ,and can generate environment | ||
<details> | ||
<summary>Prerequisites</summary> | ||
|
||
- Operating systems | ||
- Windows | ||
- Linux | ||
- macOS | ||
- Python: 3.8 ~ 3.12 | ||
</details> | ||
|
||
Use Python's package installer pip to install uvmgen: | ||
```bash | ||
python3 -m pip install uvmgen | ||
``` | ||
|
||
## Usage | ||
|
||
The basic usage of uvmgen is as follows: | ||
```bash | ||
uvmgen --input <input_json_file> --output <output_directory> | ||
``` | ||
|
||
### Options | ||
|
||
- `--input <input_json_file>`: Specifies the input JSON file containing the configuration for the testbench structure. | ||
- `--output <output_directory>`: Specifies the directory where the generated files will be placed. | ||
|
||
### Help | ||
|
||
For additional help and options, you can use the -h or --help option: | ||
|
||
```bash | ||
uvmgen -h | ||
``` | ||
|
||
## Example | ||
|
||
Suppose you have a JSON configuration file named testbench_config.json and you want to generate the testbench structure in a directory named tb, you would run the following command: | ||
|
||
```bash | ||
uvmgen --input testbench_config.json --output tb | ||
# or | ||
uvmgen -i testbench_config.json -o tb | ||
# or | ||
uvmgen -i testbench_config.json | ||
``` | ||
|
||
You can use `test/json/example/typical.json` to generate a complete UVM environment, or use `test/json/base_pkg/***.json` to generate a single package. | ||
|
||
## Contribute | ||
Contributions are always welcome! Simple fork this repo and submit a pull request. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters