Skip to content

Commit 8b52224

Browse files
committed
Specialize to egglog
1 parent 9f48ffd commit 8b52224

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
6161
# Test egglog mode
6262
- name: "Run Herbie with egglog"
63-
run: racket -y infra/ci.rkt --enable generate:egglog --seed 0 bench/hamming/trigonometry.fpcore
63+
run: racket -y infra/ci.rkt --egglog --seed 0 bench/hamming/trigonometry.fpcore
6464

6565
# Test the egg-herbie Rust code
6666
- run: cd egg-herbie && cargo clippy --tests

infra/ci.rkt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
(define given-seed (read (open-input-string rs)))
102102
(when given-seed
103103
(set-seed! given-seed))]
104+
[("--egglog") (enable-flag! 'generate 'egglog)]
104105
[("--platform") platform "Which platform to use for tests" (*platform-name* platform)]
105106
[("--precision") prec "Which precision to use for tests" (*precision* (string->symbol prec))]
106107
[("--num-iters")

0 commit comments

Comments
 (0)