Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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`.