add demo link

This commit is contained in:
yaozhicheng 2024-05-11 12:38:48 +08:00
parent e80637d828
commit 3ba088cd8b
2 changed files with 25 additions and 4 deletions

View File

@ -29,6 +29,16 @@ Chip validation is a crucial aspect of chip design work. Skipping or insufficien
1. [Building Verification Environment](/doc/env_cn.md): Learn how to set up the basic verification environment, how to validate, and submit validation results.
**<font color="blue">To accelerate the verification process, the verification environment has provided the following reusable features:</font>**
<font color="blue">
- Python DUT: Python module corresponding to each module to be verified
- FakeFTQ: A general interface for driving BPU, providing operations such as redirect and update
- BPU Trace: Branch jump data of real applications
- Pytest environment: Drive tests through pytest, generate test reports, provide code line coverage, and function coverage support
For details, please refer to the test Demo: [uFTB-raw](/tests/uFTB-raw/README.md), [uFTB-with-ftq](/tests/uFTB-with-ftq/README.md)
</font>
## Repository Directory
The structure of this repository directory and corresponding explanations are as follows:

View File

@ -23,10 +23,21 @@
## 学习材料
1. **[基础学习材料](https://open-verify.cc/mlvp/docs/)**学习什么是芯片验证如何使用Python进行验证。
1. **[香山BPU介绍](https://open-verify.cc/xs-bpu/docs/)**,学习什么是分支预测,香山处理器中采用了哪些基础预测器。
1. **[如何参与本活动](/doc/join_cn.md)**,介绍如何参与本活动,有哪些活动规则。
1. **[构建验证环境](/doc/env_cn.md)**,介绍基本验证环境搭建,如何进行验证和提交验证结果。
1. **[基础学习材料](https://open-verify.cc/mlvp/docs/)**学习什么是芯片验证如何使用Python进行验证
1. **[香山BPU介绍](https://open-verify.cc/xs-bpu/docs/)**,学习什么是分支预测,香山处理器中采用了哪些基础预测器
1. **[如何参与本活动](/doc/join_cn.md)**,介绍如何参与本活动,有哪些活动规则
1. **[构建验证环境](/doc/env_cn.md)**,介绍基本验证环境搭建,如何进行验证和提交验证结果
**<font color="blue">为了加速验证过程,验证环境已经提供了如下可复用功能:</font>**
<font color="blue">
- Python DUT各待验证模块对应的python module
- FakeFTQ用于驱动BPU的通用接口提供redirect、update等操作
- BPU Trace真实应用的分支跳转数据
- Pytest环境通过pytest驱动测试生成测试报告提供代码行覆盖率功能覆盖率支持
具体请参考测试 Demo: [uFTB-raw](/tests/uFTB-raw/README.md)、[uFTB-with-ftq](/tests/uFTB-with-ftq/README.md)
</font>
## 本仓库目录