Skip to content

Commit 8a09162

Browse files
Merge egraphs-good/main into new-backend
2 parents 1dfdd1b + 8f61f9c commit 8a09162

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.cargo/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# https://doc.rust-lang.org/cargo/reference/config.html
22
[build]
33
# debug symbols https://pyo3.rs/main/debugging#common-setup
4-
# rustflags = ["-g"]
4+
rustflags = ["-g"]

.github/workflows/CI.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@ jobs:
4949
- run: make stubtest
5050

5151
benchmark:
52-
runs-on: ubuntu-latest
52+
runs-on: ${{ matrix.runner }}
53+
strategy:
54+
matrix:
55+
# Run on codspeed for walltime and ubuntu for instrumenentation
56+
runner: [ codspeed-macro, ubuntu-latest ]
5357
steps:
5458
- uses: actions/checkout@v4
5559
- uses: astral-sh/setup-uv@v6

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ uuid = { version = "1.16.0", features = ["v4"] }
3030
egglog = { git = "https://github.com/saulshanabrook/egg-smol.git", rev = "051e523136270c05d2fb07253568441c0f4fd078" }
3131

3232
# enable debug symbols for easier profiling
33-
# [profile.release]
34-
# debug = 1
33+
[profile.release]
34+
debug = true

0 commit comments

Comments
 (0)