Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 6acb5c0a authored by POTTIER Francois's avatar POTTIER Francois
Browse files

Benchmark larger sizes.

parent f714d203
No related branches found
No related tags found
No related merge requests found
...@@ -574,8 +574,8 @@ run_split () { ...@@ -574,8 +574,8 @@ run_split () {
benchmark=split benchmark=split
run_prologue run_prologue
prun -prog $prog \ prun -prog $prog \
-n 1$K,2$K,4$K,8$K,16$K,50$K,150$K,500$K,1$M,2$M,4$M \ -n 1$K,2$K,4$K,8$K,16$K,50$K,150$K,500$K,1$M,2$M,4$M,8$M,16$M,32$M,64$M,128$M \
-op split,create,create+reach,reach,iter.split \ -op split,reach,iter.split \
-output $result -output $result
run_postlogue run_postlogue
} }
......
...@@ -26,7 +26,7 @@ let n = ...@@ -26,7 +26,7 @@ let n =
(* Manufacture the indices where splitting should take place. *) (* Manufacture the indices where splitting should take place. *)
let k = let k =
1000 3000
let indices : int array = let indices : int array =
Array.init k (fun _ -> Array.init k (fun _ ->
...@@ -168,4 +168,9 @@ let () = ...@@ -168,4 +168,9 @@ let () =
if dry then if dry then
run_once benchmark run_once benchmark
else else
drive_and_print "0.5s" benchmark let quota =
if n < 8000000 then "0.5s"
else if n < 32000000 then "1.0s"
else "5.0s"
in
drive_and_print quota benchmark
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment