Skip to content

Commit

Permalink
tools: discard the top 7 results for each 10 runs, from v repeat ru…
Browse files Browse the repository at this point in the history
…ns, done by compare_pr_to_master.v, to reduce σ on machines with more varied load
  • Loading branch information
spytheman committed Oct 21, 2024
1 parent 8e3cd70 commit 2499d26
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/compare_pr_to_master.v
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ fn xtime(cmd string) {
}

fn vcompare(vold string, vnew string) {
r("v repeat -R 3 '${vold} -check-syntax examples/hello_world.v' '${vnew} -check-syntax examples/hello_world.v'")
r("v repeat -R 3 '${vold} -check examples/hello_world.v' '${vnew} -check examples/hello_world.v'")
r("v repeat -R 3 '${vold} -o hw.c examples/hello_world.v' '${vnew} -o hw.c examples/hello_world.v'")
r("v repeat -R 3 '${vold} -o hw examples/hello_world.v' '${vnew} -o hw examples/hello_world.v'")
r("v repeat -R 3 '${vold} -check-syntax cmd/v' '${vnew} -check-syntax cmd/v'")
r("v repeat -R 3 '${vold} -check cmd/v' '${vnew} -check cmd/v'")
r("v repeat -R 3 '${vold} -o ov.c cmd/v' '${vnew} -o nv.c cmd/v'")
r("v repeat -R 3 '${vold} -o ov cmd/v' '${vnew} -o nv cmd/v'")
r("v repeat --nmaxs 7 -R 3 '${vold} -check-syntax examples/hello_world.v' '${vnew} -check-syntax examples/hello_world.v'")
r("v repeat --nmaxs 7 -R 3 '${vold} -check examples/hello_world.v' '${vnew} -check examples/hello_world.v'")
r("v repeat --nmaxs 7 -R 3 '${vold} -o hw.c examples/hello_world.v' '${vnew} -o hw.c examples/hello_world.v'")
r("v repeat --nmaxs 7 -R 3 '${vold} -o hw examples/hello_world.v' '${vnew} -o hw examples/hello_world.v'")
r("v repeat --nmaxs 7 -R 3 '${vold} -check-syntax cmd/v' '${vnew} -check-syntax cmd/v'")
r("v repeat --nmaxs 7 -R 3 '${vold} -check cmd/v' '${vnew} -check cmd/v'")
r("v repeat --nmaxs 7 -R 3 '${vold} -o ov.c cmd/v' '${vnew} -o nv.c cmd/v'")
r("v repeat --nmaxs 7 -R 3 '${vold} -o ov cmd/v' '${vnew} -o nv cmd/v'")
}

fn main() {
Expand Down

0 comments on commit 2499d26

Please sign in to comment.