Skip to content

Commit

Permalink
Merge branch 'codspeed' into call-blas-routines
Browse files Browse the repository at this point in the history
  • Loading branch information
termoshtt committed Mar 5, 2024
2 parents bb5b247 + faf3aee commit a2a4c23
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
32 changes: 32 additions & 0 deletions .github/workflows/codspeed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Codspeed

on:
push:
branches:
- "main" # or "master"
pull_request:
# `workflow_dispatch` allows CodSpeed to trigger backtest
# performance analysis in order to generate initial data.
workflow_dispatch:

jobs:
benchmarks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Setup rust toolchain, cache and cargo-codspeed binary
uses: moonrepo/setup-rust@v0
with:
channel: stable
cache-target: release
bins: cargo-codspeed

- name: Build the benchmark target(s)
run: cargo codspeed build -p einsum-derive

- name: Run the benchmarks
uses: CodSpeedHQ/action@v2
with:
run: cargo codspeed run -p einsum-derive
token: ${{ secrets.CODSPEED_TOKEN }}
1 change: 1 addition & 0 deletions einsum-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ quote = "1.0.21"
syn = "1.0.102"

[dev-dependencies]
codspeed-criterion-compat = "2.4.0"
criterion = { version = "0.4.0", features = ["html_reports"] }
insta = "1.21.0"
ndarray = "0.15.6"
Expand Down
2 changes: 1 addition & 1 deletion einsum-derive/benches/einsum.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use criterion::*;
use codspeed_criterion_compat::*;
use einsum_derive::einsum;
use ndarray::*;
use ndarray_linalg::*;
Expand Down

0 comments on commit a2a4c23

Please sign in to comment.