Skip to content

perf: use rayon and fastrand to imporve exectute speed #1

perf: use rayon and fastrand to imporve exectute speed

perf: use rayon and fastrand to imporve exectute speed #1

Workflow file for this run

name: Benchmark
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run benchmarks
run: cargo bench --verbose
- name: Upload benchmark results
uses: actions/upload-artifact@v2
with:
path: target/criterion/report/
name: benchmark-results