fixed timeline.rkt #4842
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tool | |
on: [push] | |
env: | |
RUST_BACKTRACE: full | |
jobs: | |
shell: | |
name: "Command-line tools" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Install Packages" | |
run: sudo apt-get install -y libmpfr6 libmpfr-dev | |
- name: "Install Racket" | |
uses: Bogdanp/[email protected] | |
with: | |
version: "8.12" | |
- name: Install Rust compiler | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
- uses: actions/checkout@master | |
- name: "Install dependencies" | |
run: make install | |
- run: <bench/tutorial.fpcore racket -l herbie shell >/tmp/out.fpcore | |
name: "Run shell tool" | |
- run: test `grep -c :herbie-time /tmp/out.fpcore` -eq 3 | |
name: "Test that shell output had three :herbie-time lines" | |
- run: racket -l herbie improve bench/tutorial.fpcore /tmp/out.fpcore | |
name: "Run improve tool" | |
- run: test `grep -c :herbie-time /tmp/out.fpcore` -eq 3 | |
name: "Test that improve output had three :herbie-time lines" | |
- run: racket -l herbie report bench/tutorial.fpcore /tmp/out/ | |
name: "Run report tool" | |
- run: test -d /tmp/out/ | |
name: "Test that report created a directory" | |
- run: test -f /tmp/out/index.html | |
name: "Test that report created a index.html" | |
- run: test -f /tmp/out/results.json | |
name: "Test that report created a results.json" | |
determinism: | |
name: "Determinism" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Install Packages" | |
run: sudo apt-get install -y libmpfr6 libmpfr-dev | |
- name: "Install Racket" | |
uses: Bogdanp/[email protected] | |
with: | |
version: "8.11" | |
- name: Install Rust compiler | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
- uses: actions/checkout@master | |
- name: "Install dependencies" | |
run: make install | |
- name: "Run (1st time)" | |
run: racket -l herbie report --threads yes --seed 1 bench/hamming/rearrangement.fpcore graphs0 | |
- name: "Run (2nd time)" | |
run: racket -l herbie report --threads yes --seed 1 bench/hamming/rearrangement.fpcore graphs1 | |
- name: "Check for determinism" | |
run: racket infra/diff.rkt graphs0 graphs1 |