This PR sets up the new integrated test/bench suite. It then migrates all benchmarks and some related tests to the new suite. There's also some documentation and some linting. For now, a lot of the old tests are left alone so this PR doesn't become even larger than it already is. Eventually, all tests should be migrated to the new suite though so there isn't a confusing mix of two systems.
14 lines
393 B
Text
14 lines
393 B
Text
[Compiler.saveMono] size: 1
|
|
def foo._lam_0 x x.1 : Nat :=
|
|
let _x.2 := Nat.add x.1 x;
|
|
return _x.2
|
|
[Compiler.saveMono] size: 2
|
|
def foo x xs : List Nat :=
|
|
let _f.1 := foo._lam_0 x;
|
|
let _x.2 := map _f.1 xs;
|
|
return _x.2
|
|
[Compiler.saveMono] size: 2
|
|
def boo x xs : List Nat :=
|
|
let _f.1 := foo._lam_0 x;
|
|
let _x.2 := map _f.1 xs;
|
|
return _x.2
|