fsva (FuseSoc Verification Automation)
Project description
fsva - FuseSoc Verification Automation
Status
The project is considered as finished. Only following changes will be accepted:
- new tools support,
- bug fixes,
- minor improvements not breaking backward compatibility.
Introduction
FuseSoc Verification Automation (fsva) is a tool that aims to automate the verification process of libraries and HDL design projects managed with FuseSoc build tool/system.
Fsva in no way duplicates or replaces functionalities provided by the FuseSoc. Colloquially speaking, fsva is a wrapper for FuseSoc, automating the verification process. It simply detects and runs verification targets, and parses verification results.
Why?
The major goal is to easily integrate project/libraries described in FuseSoc into Continuous Integration workflow. FuseSoc is more than good for building and running single targets, however if you want to run multiple verificaiton targets it keeps rebuilding verification frameworks. This particular operation is redundant and time consuming. Fsva assumes that verification frameworks (such as UVVM or OSVVM) are already pre-compiled (pre-analyzed) for simulation engines. What is more, fsva extends FuseSoc by parsing verification results.
How it works
Fsva scans recursively for .core
files and fetches all targets with name tb
or name starting with tb_
or ending with _tb
.
Then it runs these targets calling FuseSoc run command and captures stdout and stderr.
By default verification targets are run in parallel.
The default number of concurrent processes equals multiprocessing.cpu_count()
.
All verification results, as well as verification summary, are saved as separate files in a directory, which name reflects the UTC time of a verification process startup.
Under the UTC time directory, the cores directories are located.
Each core directory contains directories with results for particular verification targets.
Example _fsva
output directory structure:
_fsva/
└── 2020-07-15_16-31-47
├── div_by_3
│ └── div_by_3_tb
│ └── output.txt
├── gbt_link_checker
│ ├── checker_tb
│ │ └── output.txt
│ ├── generator_1_tb
│ │ └── output.txt
│ └── generator_2_tb
│ └── output.txt
├── psl
│ └── tb_0
│ ├── ghdl.ghw
│ ├── ghdl_psl_report.json
│ └── output.txt
└── summary
Fsva does not, and never will, perform any advanced results parsing such as scoreboard analysis or UVM coverage analysis. Fsva does one thing, and tries to do it well.
If one needs advanced results parsing (for example in case of metric driven verification), then the proper parser needs to be run after fsva has finished.
To make the discovery of reuslts for such test benches easier, one can use special form of prefix or suffix indicating verification framework, infrastructure etc.
For instance, for UVVM one can use tb_uvvm_
/ _uvvm_tb
, respectively for OSVVM one can use tb_osvvm_
/ _osvvm_tb
.
If FuseSoc supports formal verification targets in the future, they will be fetched based on fv_
prefix or _fv
suffix.
Installation
Latest stable version of fsva can be installed from PyPI:
pip install --user fsva
.
Alternatively, you can clone this repository and run python setup.py install --user
.
Usage
Verify project
Execute fsva
in project root directory to run all verification targets.
Verify single core or target
You can also run all verification targets for single core:
fsva core_name
or run specific verification target for specific core
fsva core_name target_name
.
When verifying single core or target, the output is printed on the console.
Extra files, such as waveform, PSL reports etc. are placed under _fsva/tmp/{core}/{target}/
path.
Note!
If you use it with UVVM you may need to fix status that is returned when UVVM test bench fails: Integrating UVVM with Continuous Integration - problem with simulators exit status.
MIT License
Copyright (c) 2019 Michał Kruszewski
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file fsva-1.2.0.tar.gz
.
File metadata
- Download URL: fsva-1.2.0.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.11.1 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82ed38d625739f08cbb546710e52898ab84b00c20a9a9e96d9c2560e623fd522 |
|
MD5 | b8bed94bf11be90019323fb6bf7b1a54 |
|
BLAKE2b-256 | 538569c749b6e49a6b14c982f640e128ba7b7775badae814c8ecdeb8bb49420e |