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.
5 lines
204 B
Text
5 lines
204 B
Text
[Compiler.IR] [init]
|
|
def f (x_1 : tobj) (x_2 : tobj) (x_3 : tobj) : tobj :=
|
|
let x_4 : tobj := List.appendTR._redArg x_1 x_2;
|
|
let x_5 : tobj := List.appendTR._redArg x_4 x_3;
|
|
ret x_5
|