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.
22 lines
492 B
Text
22 lines
492 B
Text
--
|
|
|
|
def run1 (i : Nat) (n : Nat) (xs : List Nat) : Nat :=
|
|
n.repeat (fun r =>
|
|
dbg_trace ">> [{i}] {r}";
|
|
xs.foldl (fun a b => a + b) r)
|
|
0
|
|
|
|
def tst (n : Nat) : IO UInt32 :=
|
|
let ys := (List.replicate n 1);
|
|
let ts : List (Task Nat) := (List.range 10).map (fun i => Task.spawn fun _ => run1 (i+1) n ys);
|
|
let ns : List Nat := ts.map Task.get;
|
|
IO.println (">> " ++ toString ns) *>
|
|
pure 0
|
|
|
|
/--
|
|
info: >> [100, 100, 100, 100, 100, 100, 100, 100, 100, 100]
|
|
---
|
|
info: 0
|
|
-/
|
|
#guard_msgs in
|
|
#eval tst 10
|