Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xujiandong/rvv-testcases
Test cases of RISC-V V extension implementation on ckb-vm: https://github.com/nervosnetwork/ckb-vm/tree/rvv
https://github.com/xujiandong/rvv-testcases
Last synced: about 2 months ago
JSON representation
Test cases of RISC-V V extension implementation on ckb-vm: https://github.com/nervosnetwork/ckb-vm/tree/rvv
- Host: GitHub
- URL: https://github.com/xujiandong/rvv-testcases
- Owner: XuJiandong
- License: mit
- Created: 2022-01-05T06:14:39.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-20T11:40:28.000Z (over 2 years ago)
- Last Synced: 2023-03-23T03:47:04.002Z (almost 2 years ago)
- Language: Rust
- Homepage:
- Size: 184 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rvv-testcases
Test cases of RISC-V V extension implementation on ckb-vm: https://github.com/nervosnetwork/ckb-vm/tree/rvv### Prepare tools
Install ckb-debugger for RVV:
```bash
make install-tools
```### Build
```bash
make all-via-docker
```### Run
```bash
make run
```### Debug mode
By default, it's in release mode. Turn it into debug mode:```bash
export BUILD=debug
make all-via-docker
make run
```
### Run part of test cases```bash
make run args=vop_vv_cases::test_vop_vv
```
Then only test case `vop_vv_cases::test_vop_vv` will be run. See macro `misc::test_case`.