mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
20 lines
234 B
Markdown
20 lines
234 B
Markdown
|
|
# Running the benchmarks
|
|
|
|
Install cargo criterion:
|
|
|
|
```sh
|
|
cargo install cargo-criterion
|
|
```
|
|
|
|
To prevent stack overflow on the `CFold` benchmark:
|
|
|
|
```sh
|
|
ulimit -s unlimited
|
|
```
|
|
|
|
In the `cli` folder execute:
|
|
|
|
```sh
|
|
cargo criterion
|
|
```
|