1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
|
(* Copyright (C) 2009 Matthew Fluet.
* Copyright (C) 1999-2007 Henry Cejtin, Matthew Fluet, Suresh
* Jagannathan, and Stephen Weeks.
* Copyright (C) 1997-2000 NEC Research Institute.
*
* MLton is released under a BSD-style license.
* See the file MLton-LICENSE for details.
*)
structure Main =
struct
type int = Int.t
fun usage msg =
Process.usage {usage = "[-mlkit] [-mlton </path/to/mlton>] [-mosml] [-poly] [-smlnj] bench1 bench2 ...",
msg = msg}
val doOnce = ref false
val doWiki = ref false
val runArgs : string list ref = ref []
fun withInput (file, f: unit -> 'a): 'a =
let
open FileDesc
val inFd =
let
open Pervasive.Posix.FileSys
in
openf (file, O_RDONLY, O.flags [])
end
in
Exn.finally
(fn () => FileDesc.fluidLet (FileDesc.stdin, inFd, f),
fn () => FileDesc.close inFd)
end
fun ignoreOutput f =
let
val nullFd =
let
open Pervasive.Posix.FileSys
in
openf ("/dev/null", O_WRONLY, O.flags [])
end
open FileDesc
in
Exn.finally
(fn () => fluidLet (stderr, nullFd, fn () =>
fluidLet (stdout, nullFd, f)),
fn () => close nullFd)
end
datatype command =
Explicit of {args: string list,
com: string}
| Shell of string
fun timeIt ca =
Process.time
(fn () =>
case ca of
Explicit {args, com} =>
Process.wait (Process.spawnp {file = com, args = com :: args})
| Shell s => Process.system s)
local
val trialTime = Time.seconds (IntInf.fromInt 60)
in
fun timeCall (com, args): real =
let
fun doit ac =
let
val {user, system} = timeIt (Explicit {args = args, com = com})
val op + = Time.+
in ac + user + system
end
fun loop (n, ac: Time.t): real =
if Time.> (ac, trialTime)
then Time.toReal ac / Real.fromInt n
else loop (n + 1, doit ac)
in
if !doOnce
then Time.toReal (doit Time.zero)
else loop (0, Time.zero)
end
end
val benchCounts: (string * int * int) list =
[("barnes-hut", 4096, 1024),
("boyer", 3000, 1000),
("checksum", 1500, 150),
("count-graphs", 3, 1),
("DLXSimulator", 50, 15),
("fft", 256, 128),
("fib", 6, 1),
("flat-array", 6000, 1200),
("hamlet", 100, 10),
("imp-for", 1000, 300),
("knuth-bendix", 500, 100),
("lexgen", 300, 50),
("life", 6, 2),
("logic", 40, 7),
("mandelbrot", 2, 1),
("matrix-multiply", 20, 20),
("md5", 30, 10),
("merge", 4000, 1000),
("mlyacc", 500, 150),
("model-elimination", 0, 0),
("mpuz", 20, 5),
("nucleic", 500, 150),
("output1", 3, 3),
("peek", 1000, 100),
("psdes-random", 3, 1),
("ratio-regions", 1024, 512),
("ray", 100, 30),
("raytrace", 10, 3),
("simple", 100, 20),
("smith-normal-form", 6, 1),
("tailfib", 200, 60),
("tak", 4, 2),
("tensor", 3, 1),
("tsp", 4, 1),
("tyan", 80, 13),
("vector-concat", 10, 2),
("vector-rev", 20, 20),
("vliw", 150, 30),
("wc-input1", 4000, 1000),
("wc-scanStream", 6000, 2000),
("zebra", 15, 3),
("zern", 2000, 500)]
val benchCount =
String.memoize
(fn s =>
case List.peek (benchCounts, fn (b, _, _) => b = s) of
NONE => Error.bug (concat ["no benchCount for ", s])
| SOME (_, x86, sparc) =>
Int.toString
let
open MLton.Platform.Arch
in
case host of
Sparc => sparc
| _ => x86
end)
fun compileSizeRun {command, exe, doTextPlusData: bool} =
Escape.new
(fn e =>
let
val exe = "./" ^ exe
val {system, user} = timeIt command
handle _ => Escape.escape (e, {compile = NONE,
run = NONE,
size = NONE})
val compile = SOME (Time.toReal (Time.+ (system, user)))
val size =
if doTextPlusData
then
let
val {text, data, ...} = Process.size exe
in SOME (Position.fromInt (text + data))
end
else SOME (File.size exe)
val run =
timeCall (exe, !runArgs)
handle _ => Escape.escape (e, {compile = compile,
run = NONE,
size = size})
in {compile = compile,
run = SOME run,
size = size}
end)
fun batch bench = concat [bench, ".batch.sml"]
local
val n = Counter.new 0
val exe = "a.out"
in
fun makeMLton commandPattern =
case ChoicePattern.expand commandPattern of
Result.No m => usage m
| Result.Yes coms =>
List.map
(coms, fn com =>
{name = com,
abbrv = "MLton" ^ (Int.toString (Counter.next n)),
test = (fn {bench} =>
compileSizeRun
{command = Shell (concat [com, " -output ", exe, " ", batch bench]),
exe = exe,
doTextPlusData = true})})
end
fun kitCompile {bench} =
compileSizeRun {command = Explicit {args = [batch bench],
com = "mlkit"},
exe = "run",
doTextPlusData = true}
fun mosmlCompile {bench} =
compileSizeRun
{command = Explicit {args = ["-orthodox", "-standalone", "-toplevel",
batch bench],
com = "mosmlc"},
exe = "a.out",
doTextPlusData = false}
val njSuffix =
Promise.delay
(fn () =>
let
val sml = "sml"
val suffix =
File.withTemp
(fn tmp =>
(File.withTempOut
(fn output =>
Out.output
(output, concat ["val tmp = TextIO.openOut(\"", tmp, "\");\n",
"val _ = TextIO.output(tmp, SMLofNJ.SysInfo.getHeapSuffix());\n",
"val _ = TextIO.closeOut(tmp);\n"]),
fn input =>
withInput
(input, fn () =>
Process.wait (Process.spawnp {file = sml, args = [sml]})))
; In.withClose (In.openIn tmp, In.inputAll)))
in
suffix
end)
fun njCompile {bench} =
Escape.new
(fn e =>
let
(* sml should start SML/NJ *)
val sml = "sml"
val {system, user} =
File.withTempOut
(fn out =>
(Out.output
(out, "local\nval _ = SMLofNJ.Internals.GC.messages false\n")
; File.outputContents (concat [bench, ".sml"], out)
; (Out.output
(out,
concat
["in val _ = SMLofNJ.exportFn (\"", bench,
"\", fn _ => (Main.doit ", benchCount bench,
"; OS.Process.success))\nend\n"]
))),
fn input => withInput (input, fn () => timeIt (Explicit {args = [],
com = sml})))
handle _ => Escape.escape (e, {compile = NONE,
run = NONE,
size = NONE})
val suffix = Promise.force njSuffix
val heap = concat [bench, ".", suffix]
in
if not (File.doesExist heap)
then {compile = NONE,
run = NONE,
size = NONE}
else
let
val compile = Time.toReal (Time.+ (user, system))
val size = SOME (File.size heap)
val run =
timeCall (sml, [concat ["@SMLload=", heap]])
handle _ => Escape.escape (e, {compile = SOME compile,
run = NONE,
size = size})
in {compile = SOME compile,
run = SOME run,
size = size}
end
end)
fun polyCompile {bench} =
Escape.new
(fn e =>
let
val originalDbase = "/usr/lib/poly/ML_dbase"
val poly = "/usr/bin/poly"
in File.withTemp
(fn dbase =>
let
val _ = File.copy (originalDbase, dbase)
val original = File.size dbase
val {system, user} =
File.withTempOut
(fn out =>
Out.output
(out,
concat ["use \"", bench, ".sml\" handle _ => PolyML.quit ();\n",
"if PolyML.commit() then () else ",
"(Main.doit ", benchCount bench, "; ());\n",
"PolyML.quit();\n"]),
fn input =>
withInput
(input, fn () =>
timeIt (Explicit {args = [dbase],
com = poly})))
val after = File.size dbase
in
if original = after
then {compile = NONE,
run = NONE,
size = NONE}
else
let
val compile = SOME (Time.toReal (Time.+ (user, system)))
val size = SOME (after - original)
val run =
timeCall (poly, [dbase])
handle _ => Escape.escape (e, {compile = compile,
run = NONE,
size = size})
in
{compile = compile,
run = SOME run,
size = size}
end
end)
end)
type 'a data = {bench: string,
compiler: string,
value: 'a} list
fun main args =
let
val compilers: {name: string,
abbrv: string,
test: {bench: File.t} -> {compile: real option,
run: real option,
size: Position.int option}} list ref
= ref []
fun pushCompiler compiler = List.push(compilers, compiler)
fun pushCompilers compilers' = compilers := (List.rev compilers') @ (!compilers)
fun setData (switch, data, str) =
let
fun die () = usage (concat ["invalid -", switch, " argument: ", str])
open Regexp
val numSave = Save.new ()
val regexpSave = Save.new ()
val re = seq [save (star digit, numSave),
char #",",
save (star any, regexpSave)]
val reC = compileDFA re
in
case Compiled.matchAll (reC, str) of
NONE => die ()
| SOME match =>
let
val num = Match.lookupString (match, numSave)
val num = case Int.fromString num of
NONE => die ()
| SOME num => num
val regexp = Match.lookupString (match, regexpSave)
val (regexp, saves) =
case Regexp.fromString regexp of
NONE => die ()
| SOME regexp => regexp
val save = if 0 <= num andalso num < Vector.length saves
then Vector.sub (saves, num)
else die ()
val regexpC = compileDFA regexp
fun doit s =
Option.map
(Compiled.matchAll (regexpC, s),
fn match => Match.lookupString (match, save))
in
data := SOME (str, doit)
end
end
val outData : (string * (string -> string option)) option ref = ref NONE
val setOutData = fn str => setData ("out", outData, str)
val errData : (string * (string -> string option)) option ref = ref NONE
val setErrData = fn str => setData ("err", errData, str)
(* Set the stack limit to its max, since mlkit segfaults on some benchmarks
* otherwise.
*)
val _ =
let
open MLton.Platform.OS
in
if host = Linux
then
let
open MLton.Rlimit
val {hard, ...} = get stackSize
in
set (stackSize, {hard = hard, soft = hard})
end
else ()
end
local
open Popt
in
val res =
parse
{switches = args,
opts = [("args",
SpaceString
(fn args =>
runArgs := String.tokens (args, Char.isSpace))),
("err", SpaceString setErrData),
("mlkit",
None (fn () => pushCompiler
{name = "ML-Kit",
abbrv = "ML-Kit",
test = kitCompile})),
("mosml",
None (fn () => pushCompiler
{name = "Moscow-ML",
abbrv = "Moscow-ML",
test = mosmlCompile})),
("mlton",
SpaceString (fn arg => pushCompilers
(makeMLton arg))),
("once", trueRef doOnce),
("out", SpaceString setOutData),
("poly",
None (fn () => pushCompiler
{name = "Poly/ML",
abbrv = "Poly/ML",
test = polyCompile})),
("smlnj",
None (fn () => pushCompiler
{name = "SML/NJ",
abbrv = "SML/NJ",
test = njCompile})),
trace,
("wiki", trueRef doWiki)]}
end
in
case res of
Result.No msg => usage msg
| Result.Yes benchmarks =>
let
val compilers = List.rev (!compilers)
val base = #name (hd compilers)
val _ =
let
open MLton.Signal
in
setHandler (Pervasive.Posix.Signal.pipe, Handler.ignore)
end
fun r2s n r = Real.format (r, Real.Format.fix (SOME n))
val i2s = Int.toCommaString
val p2s = i2s o Position.toInt
val s2s = fn s => s
val failures = ref []
fun show ({compiles, runs, sizes, errs, outs}, {showAll}) =
let
val out = Out.standard
val _ =
List.foreach
(compilers, fn {name, abbrv, ...} =>
Out.output (out, concat [abbrv, " -- ", name, "\n"]))
val _ =
case !failures of
[] => ()
| fs =>
Out.output
(out,
concat ["WARNING: ", base, " failed on: ",
concat (List.separate (fs, ", ")),
"\n"])
fun show (title, data: 'a data, toString, toStringHtml) =
let
val _ = Out.output (out, concat [title, "\n"])
val compilers =
List.fold
(compilers, [],
fn ({name = n, abbrv = n', ...}, ac) =>
if showAll
orelse (List.exists
(data, fn {compiler = c, ...} =>
n = c))
then (n, n') :: ac
else ac)
val benchmarks =
List.fold
(benchmarks, [], fn (b, ac) =>
if showAll
orelse List.exists (data, fn {bench, ...} =>
bench = b)
then b :: ac
else ac)
fun rows toString =
("benchmark"
:: List.revMap (compilers, fn (_, n') => n'))
:: (List.revMap
(benchmarks, fn b =>
b :: (List.revMap
(compilers, fn (n, _) =>
case (List.peek
(data, fn {bench = b',
compiler = c', ...} =>
b = b' andalso n = c')) of
NONE => "*"
| SOME {value = v, ...} =>
toString v))))
open Justify
val () =
outputTable
(table {columnHeads = NONE,
justs = (Left ::
List.revMap (compilers,
fn _ => Right)),
rows = rows toString},
out)
fun prow ns =
let
fun p s = Out.output (out, s)
in
case ns of
[] => raise Fail "bug"
| b :: ns =>
(p "||"
; p b
; List.foreach (ns, fn n =>
(p "||"; p n))
; p "||\n")
end
val _ =
if not (!doWiki)
then ()
else
let
val rows = rows toStringHtml
in
prow (hd rows)
; (List.foreach
(tl rows,
fn [] => raise Fail "bug"
| b :: r =>
let
val b =
concat
["[attachment:",
b, ".sml ", b, "]"]
in
prow (b :: r)
end))
end
in
()
end
val bases = List.keepAll (runs, fn {compiler, ...} =>
compiler = base)
val ratios =
List.fold
(runs, [], fn ({bench, compiler, value}, ac) =>
if compiler = base andalso not showAll
then ac
else
{bench = bench,
compiler = compiler,
value =
case List.peek (bases, fn {bench = b, ...} =>
bench = b) of
NONE => ~1.0
| SOME {value = v, ...} => value / v} :: ac)
val _ = show ("run time ratio", ratios, r2s 2, r2s 1)
val _ = show ("size", sizes, p2s, p2s)
val _ = show ("compile time", compiles, r2s 2, r2s 2)
val _ = show ("run time", runs, r2s 2, r2s 2)
val _ = case !outData of
NONE => ()
| SOME (out, _) =>
show (concat ["out: ", out], outs, s2s, s2s)
val _ = case !errData of
NONE => ()
| SOME (err, _) =>
show (concat ["err: ", err], errs, s2s, s2s)
in ()
end
val totalFailures = ref []
val data =
List.fold
(benchmarks, {compiles = [], runs = [], sizes = [],
outs = [], errs = []},
fn (bench, ac) =>
let
val _ =
File.withOut
(batch bench, fn out =>
(File.outputContents (concat [bench, ".sml"], out)
; Out.output (out, concat ["val _ = Main.doit ",
benchCount bench,
"\n"])))
val foundOne = ref false
val res =
List.fold
(compilers, ac, fn ({name, abbrv = _, test},
ac as {compiles: real data,
runs: real data,
sizes: Position.int data,
outs: string data,
errs: string data}) =>
if true
then
let
(*
val outTmpFile =
File.tempName {prefix = "tmp", suffix = "out"}
val errTmpFile =
File.tempName {prefix = "tmp", suffix = "err"}
*)
val {compile, run, size} =
ignoreOutput
(fn () => test {bench = bench})
val _ =
if name = base
andalso Option.isNone run
then List.push (failures, bench)
else ()
(*
val out =
case !outData of
NONE => NONE
| SOME (_, doit) =>
File.foldLines
(outTmpFile, NONE, fn (s, v) =>
let val s = String.removeTrailing
(s, fn c =>
Char.equals (c, Char.newline))
in
case doit s of
NONE => v
| v => v
end)
val err =
case !errData of
NONE => NONE
| SOME (_, doit) =>
File.foldLines
(errTmpFile, NONE, fn (s, v) =>
let val s = String.removeTrailing
(s, fn c =>
Char.equals (c, Char.newline))
in
case doit s of
NONE => v
| v => v
end)
val _ = File.remove outTmpFile
val _ = File.remove errTmpFile
*)
val out = NONE
val err = NONE
fun add (v, ac) =
case v of
NONE => ac
| SOME v =>
(foundOne := true
; {bench = bench,
compiler = name,
value = v} :: ac)
val ac =
{compiles = add (compile, compiles),
runs = add (run, runs),
sizes = add (size, sizes),
outs = add (out, outs),
errs = add (err, errs)}
val _ = show (ac, {showAll = false})
val _ = Out.flush Out.standard
in
ac
end
else ac)
val _ =
if !foundOne
then ()
else List.push (totalFailures, bench)
in
res
end)
val _ = show (data, {showAll = true})
val totalFailures = !totalFailures
val _ =
if List.isEmpty totalFailures
then ()
else (print ("The following benchmarks failed completely.\n")
; List.foreach (totalFailures, fn s =>
print (concat [s, "\n"])))
in ()
end
end
val main = Process.makeMain main
end
|