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 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
|
# micro.icn -- microbenchmark timings of Icon operations
#
# usage: icon micro.icn interval
#
# Various Icon operations are executed inside an "every 1 to n" loop,
# with n scaled to execute the loop for at least <interval> seconds.
# Timings are based on &time, which must be meaningful or all bets are off.
#
# For each operation, execution time per iteration is given in nanoseconds.
# Automatic calibration produces a delay of a few seconds before the
# first line is output. This first line reports the measured overhead
# of an empty loop, which is subtracted from subsequent values.
#
# Timings labeled "nothing" are remeasurements of the empty loop.
# They should ideally be zero; deviations indicate inaccuracies
# and inconsistencies in the timing measurements.
#
# Originally from the Jcon distribution; revised Nov 2009 for Icon v9.
$define DefaultTime 1.0 # default measurement interval, in seconds
$define MinOvhTime 1.0 # minimum interval for overhead measurement
$define NumOvhLoops 5 # number of overhead measurements to take
global looptime # expected loop time, in msec
global overhead # measured loop overhead, in nsec
global sink # output file for I/O tests
procedure main(args)
local olist, ovhtime
looptime := integer(1000 * (args[1] | DefaultTime))
sink := open("/dev/null", "w")
# use median of five tries for overhead value
ovhtime := looptime
ovhtime <:= integer(1000 * MinOvhTime)
olist := list()
every 1 to NumOvhLoops do {
writes(&errout,".")
put(olist, measure(nothing, ovhtime))
}
overhead := sort(olist)[1 + (*olist - 1) / 2] # median
write(right(overhead, 10), " overhead")
report(nothing)
report(nothing)
report(nothing)
report(globasgn)
report(statasgn)
report(loclasgn)
report(if0)
report(case3)
report(nulltest)
report(typef)
report(imagef)
report(everyto)
report(everyalt)
report(conj5)
report(nullfunc)
report(listcall)
report(marshal)
report(evsusp)
report(tointeger)
report(intcoerce)
report(uplus)
report(tostring)
report(strcoerce)
report(absf)
report(intadd)
report(addfunc)
report(intpow)
report(intcmp)
report(rfact0)
report(rfact10)
report(rfib5)
report(prslow)
report(toreal)
report(realcoerce)
report(uplusr)
report(rtostring)
report(strcoercer)
report(realcmp)
report(sqrtf)
report(cosf)
report(logf)
report(charf)
report(ordf)
report(strsize)
report(strpick)
report(strbang)
report(strsub)
report(substr)
report(subsasg)
report(strcmp)
report(strident)
report(concat)
report(reversef)
report(trimf)
report(replf)
report(leftf)
report(centerf)
report(rightf)
report(entabf)
report(detabf)
report(mapf)
report(map1)
report(map2)
report(tablemap)
report(listmap)
report(nullscan)
report(movef)
report(mov11)
report(pos11)
report(tabf)
report(matchf)
report(tabmat)
report(posf)
report(anyf)
report(manyf)
report(uptof)
report(findf)
report(balf)
report(tocset)
report(cssize)
report(cscompl)
report(lcreate)
report(lconst)
report(lcopy)
report(lsort)
report(lsize)
report(lpick)
report(lbang)
report(lsubscr)
report(put1get1)
report(put2get2)
report(put3get3)
report(put4get4)
report(pushpop)
report(putget12)
report(pushpop12)
report(setcreate)
report(setcopy)
report(setmember)
report(setinsert)
report(setinsdel)
report(setbang)
report(setpick)
report(tblcreate)
report(tblsub)
report(tblasgn)
report(recconstr)
report(reccopy)
report(recfield)
report(bigfield)
report(readz)
report(writecon)
report(writestr)
report(cxcreate)
report(cxget)
report(nothing)
report(nothing)
report(nothing)
write(&errout)
end
procedure report(proc)
local label
label := proc()
writes(&errout, ".") # progress indicator
write(right(measure(proc, looptime) - overhead, 10), " ", label)
return
end
procedure measure(proc, looptime)
local n, t1, t2, dt, nsec
proc(1) # prime the pump -- load classes etc.
n := 1
t2 := &time
repeat {
n *:= 10
t1 := t2
proc(n) # call proc n times
t2 := &time # get ending time
dt := integer(t2 - t1)
if dt >= looptime / 20 then # if close enough to estimate
break
}
n := integer(1.1 * n * looptime / real(dt)) # calc final loop count
collect() # clean up accumulated garbage
t1 := &time
until t1 ~=:= &time # await next tick
proc(n) # run timing loop for real
t2 := &time # calculate elapsed time
dt := integer(t2 - t1)
t1 := dt / real(n)
nsec := integer(t1 * 1000000 + 0.5)
return nsec
end
####################### microbenchmark procedures #####################
procedure nothing(n)
if /n then return "nothing"
every 1 to n do
0
end
procedure uplus(n)
if /n then return "+407"
every 1 to n do
+407
end
procedure uplusr(n)
if /n then return "+7.25"
every 1 to n do
+7.25
end
procedure absf(n)
if /n then return "abs(-3)"
every 1 to n do
abs(-3)
end
procedure intadd(n)
if /n then return "4 + 7"
every 1 to n do
4 + 7
end
procedure intcmp(n)
if /n then return "4 < 7"
every 1 to n do
4 < 7
end
procedure intpow(n)
if /n then return "4 ^ 7"
every 1 to n do
4 ^ 7
end
procedure realcmp(n)
if /n then return "1.6 < 2.7"
every 1 to n do
1.6 < 2.7
end
procedure cosf(n)
if /n then return "cos(0.2)"
every 1 to n do
cos(0.2)
end
procedure sqrtf(n)
if /n then return "sqrt(7.4)"
every 1 to n do
sqrt(7.4)
end
procedure logf(n)
if /n then return "log(25.,17.)"
every 1 to n do
log(25.,17.)
end
procedure nullfunc(n)
if /n then return "p()"
every 1 to n do
nullf()
end
procedure nullf()
end
procedure listcall(n)
static L
initial L := []
if /n then return "p ! L"
every 1 to n do
nullf ! L
end
procedure addfunc(n)
if /n then return "add(4, 7)"
every 1 to n do
add(4, 7)
end
procedure add(a, b)
return a + b
end
procedure rfact0(n)
if /n then return "rfact(0)"
every 1 to n do
rfact(0)
end
procedure rfact10(n)
if /n then return "rfact(10)"
every 1 to n do
rfact(10)
end
procedure rfact(n) # makes n recursive calls
if n < 1 then return 1
else return n * rfact(n - 1)
end
procedure rfib5(n)
if /n then return "rfib(5)"
every 1 to n do
rfib(5)
end
procedure rfib(n) # slow, recursive Fibonacci
if n < 3 then
return 1
else
return rfib(n - 2) + rfib(n - 1)
end
procedure prslow(n) # slow prime number counting
local i, k
if /n then return "prslow(7)"
every 1 to n do {
k := 0
every i := 2 to 7 do {
if i % (2 to i - 1) = 0 then
next
k +:= 1
}
}
end
procedure if0(n)
if /n then return "if 0 then 1"
every 1 to n do
if 0 then 1
end
procedure case3(n)
if /n then return "case 3 of..."
every 1 to n do
case 3 of {
1 : 1
2 : 2
3 : 3
4 : 4
default : 0
}
end
procedure nulltest(n)
if /n then return "\\8"
every 1 to n do
\8
end
procedure typef(n)
if /n then return "type(s)"
every 1 to n do
type("abcde")
end
procedure imagef(n)
if /n then return "image(s)"
every 1 to n do
image("ab\tcd")
end
procedure marshal(n)
if /n then return "2(3,1,4,1,6)"
every 1 to n do
2 (3, 1, 4, 1, 6)
end
procedure conj5(n)
if /n then return "1&2&3&4&5"
every 1 to n do
1 & 2 & 3 & 4 & 5
end
procedure everyalt(n)
if /n then return "1|2|3|4|5"
every 1 to n do
every 1 | 2 | 3 | 4 | 5
end
procedure everyto(n)
if /n then return "1 to 5"
every 1 to n do
every 1 to 5
end
procedure evsusp(n)
if /n then return "suspend i"
every susproc(n)
end
procedure susproc(n)
suspend 1 to n
end
procedure intcoerce(n)
if /n then return "+\"407\""
every 1 to n do
+"407"
end
procedure realcoerce(n)
if /n then return "+\"7.25\""
every 1 to n do
+"7.25"
end
procedure strcoerce(n)
if /n then return "*407"
every 1 to n do
*407
end
procedure strcoercer(n)
if /n then return "*7.25"
every 1 to n do
*7.25
end
procedure tointeger(n)
if /n then return "integer(\"407\")"
every 1 to n do
integer("407")
end
procedure toreal(n)
if /n then return "real(\"7.25\")"
every 1 to n do
real("407")
end
procedure tostring(n)
if /n then return "string(407)"
every 1 to n do
string(407)
end
procedure rtostring(n)
if /n then return "string(7.25)"
every 1 to n do
string(7.25)
end
procedure tocset(n)
if /n then return "cset(\"407\")"
every 1 to n do
cset("407")
end
procedure charf(n)
if /n then return "char(65)"
every 1 to n do
char(65)
end
procedure ordf(n)
if /n then return "ord(\"A\")"
every 1 to n do
ord("A")
end
procedure strsize(n)
if /n then return "*\"abcde\""
every 1 to n do
*"abcde"
end
procedure concat(n)
if /n then return "\"a\" || \"b\""
every 1 to n do
"a" || "b"
end
procedure strpick(n)
if /n then return "?\"abcde\""
every 1 to n do
?"abcde"
end
procedure strbang(n)
if /n then return "!\"12345\""
every 1 to n do
every !"12345"
end
procedure strsub(n)
if /n then return "\"abcde\"[3]"
every 1 to n do
"abcde"[3]
end
procedure substr(n)
if /n then return "\"abcde\"[2:5]"
every 1 to n do
"abcde"[2:5]
end
procedure subsasg(n)
local s
if /n then return "s[2:5] := \"x\""
every 1 to n do
(s := "abcde")[2:5] := "x"
end
procedure strcmp(n)
if /n then return "\"abc\">>\"aaa\""
every 1 to n do
"abc" >> "aaa"
end
procedure strident(n)
if /n then return "\"abc\"===\"aaa\""
every 1 to n do
"abc" === "aaa"
end
procedure replf(n)
if /n then return "repl(\"-\",20)"
every 1 to n do
repl("-", 20)
end
procedure reversef(n)
if /n then return "reverse(\"a...z\")"
every 1 to n do
reverse("abcdefghijklmnopqrstuvwxyz")
end
procedure leftf(n)
if /n then return "left(\"a\",10)"
every 1 to n do
left("a",10)
end
procedure centerf(n)
if /n then return "center(\"a\",10)"
every 1 to n do
center("a",10)
end
procedure rightf(n)
if /n then return "right(\"a\",10)"
every 1 to n do
right("a",10)
end
procedure trimf(n)
if /n then return "trim(\"a ...\")"
every 1 to n do
trim("a ")
end
procedure entabf(n)
if /n then return "entab(\"a ...\")"
every 1 to n do
entab("a ")
end
procedure detabf(n)
if /n then return "detab(\"a\\tb\\tc\")"
every 1 to n do
detab("a\tb\tc")
end
procedure mapf(n)
if /n then return "map(\"quick brown fox\",\"a...z\",\"A...Z\")"
every 1 to n do
map("quick brown fox",
"abcdefghijklmnopqrstuvwxyz", "ABCDEFGHIJKLMNOPQRSTUVWXYZ")
end
procedure map1(n)
if /n then return "map(\"b\",\"ab\",\"ba\")"
every 1 to n do
map("b","ab","ba")
end
procedure map2(n)
if /n then return "map(\"b\",\"ab\",\"ba\") & map(\"c\",\"dc\",\"cd\")"
every 1 to n do
map("b","ab","ba") & map("c","dc","cd")
end
procedure tablemap(n)
static T
initial { T := table(); T["a"] := "b"; T["b"] := "a" }
if /n then return "T[\"b\"]"
every 1 to n do
T["b"]
end
procedure listmap(n)
static L
initial { L := list(256); L[ord("a")] := "b"; L[ord("b")] := "a" }
if /n then return "L[ord(\"b\")]"
every 1 to n do
L[ord("b")]
end
procedure nullscan(n)
if /n then return "s ? 0"
every 1 to n do
"abc" ? 0
end
procedure movef(n)
if /n then return "move(0)"
"abcde" ? every 1 to n do
move(0)
end
procedure mov11(n)
if /n then return "move(1) & move(-1)"
"abcde" ? every 1 to n do
move(1) & move(-1)
end
procedure pos11(n)
if /n then return "(&pos +:= 1) & (&pos -:= 1)"
"abcde" ? every 1 to n do
(&pos +:= 1) & (&pos -:= 1)
end
procedure tabf(n)
if /n then return "tab(3)"
"abcde" ? every 1 to n do
tab(3)
end
procedure matchf(n)
if /n then return "match(\"abc\")"
"abcde" ? every 1 to n do
match("abc")
end
procedure tabmat(n)
if /n then return "s1 ? =s2"
"abcde" ? every 1 to n do
="abd"
end
procedure posf(n)
if /n then return "pos(-1)"
"abcde" ? every 1 to n do
pos(-1)
end
procedure anyf(n)
if /n then return "any('aeiou')"
"abcde" ? every 1 to n do
any('aeiou')
end
procedure manyf(n)
if /n then return "many(&lcase)"
"abcde" ? every 1 to n do
many(&lcase)
end
procedure uptof(n)
if /n then return "upto('d')"
"abcde" ? every 1 to n do
upto('d')
end
procedure findf(n)
if /n then return "find(\"de\")"
"abcde" ? every 1 to n do
find("de")
end
procedure balf(n)
if /n then return "bal('+')"
"(a*b)+(c/d)" ? every 1 to n do
upto('+')
end
procedure cssize(n)
if /n then return "*&digits"
every 1 to n do
*&digits
end
procedure cscompl(n)
if /n then return "~&digits"
every 1 to n do
~&digits
end
procedure lcreate(n)
if /n then return "list(5,0)"
every 1 to n do
list(5,0)
end
procedure lconst(n)
local x
if /n then return "[1,2,3,4,5]"
every 1 to n do
x := [1,2,3,4,5] # must store, else jcont suppresses
end
procedure lcopy(n)
static L
initial L := [1,2,3,4,5]
if /n then return "copy(L)"
every 1 to n do
copy(L)
end
procedure lsort(n)
static L
initial L := [2,7,1,8,3]
if /n then return "sort(L)"
every 1 to n do
sort(L)
end
procedure lsize(n)
static L
initial L := [1,2,3,4,5]
if /n then return "*L"
every 1 to n do
*L
end
procedure lpick(n)
static L
initial L := [1,2,3,4,5]
if /n then return "?L"
every 1 to n do
?L
end
procedure lsubscr(n)
static L
initial L := [1,2,3,4,5]
if /n then return "L[3]"
every 1 to n do
L[3]
end
procedure lbang(n)
static L
initial L := [1,2,3,4,5]
if /n then return "!L"
every 1 to n do
every !L
end
procedure put1get1(n)
static L
initial L := []
if /n then return "get(put(L,0))"
every 1 to n do
get(put(L,0))
end
procedure put2get2(n)
static L
initial L := []
if /n then return "put(L,1,2) & [2x] get(L)"
every 1 to n do
put(L,1,2) & get(L) & get(L)
end
procedure put3get3(n)
static L
initial L := []
if /n then return "put(L,1,2,3) & [3x] get(L)"
every 1 to n do
put(L,1,2,3) & get(L) & get(L) & get(L)
end
procedure put4get4(n)
static L
initial L := []
if /n then return "put(L,1,2,3,4) & [4x] get(L)"
every 1 to n do
put(L,1,2,3,4) & get(L) & get(L) & get(L) & get(L)
end
procedure pushpop(n)
static L
initial L := []
if /n then return "pop(push(L,0))"
every 1 to n do
pop(push(L,0))
end
procedure putget12(n)
static L
initial L := [3,1,4,1,5,9,2,6,5,3,5,8]
if /n then return "get(put(L12,0))"
every 1 to n do
get(put(L,0))
end
procedure pushpop12(n)
static L
initial L := [3,1,4,1,5,9,2,6,5,3,5,8]
if /n then return "pop(push(L12,0))"
every 1 to n do
pop(push(L,0))
end
procedure setcreate(n)
if /n then return "set()"
every 1 to n do
set()
end
procedure setcopy(n)
static S
initial insert(S := set(), 5)
if /n then return "copy(S)"
every 1 to n do
copy(S)
end
procedure setinsert(n)
static S
initial insert(S := set(), 5)
if /n then return "insert(S,5)"
every 1 to n do
insert(S,5)
end
procedure setmember(n)
static S
initial insert(S := set(), 5)
if /n then return "member(S,5)"
every 1 to n do
member(S,5)
end
procedure setinsdel(n)
static S
initial S := set()
if /n then return "insert+delete"
every 1 to n do
delete(insert(S,5),5)
end
procedure setpick(n)
static S
initial insert(S := set(), 5)
if /n then return "?S"
every 1 to n do
?S
end
procedure setbang(n)
static S
initial every insert(S := set(), 1 to 5)
if /n then return "!S"
every 1 to n do
every !S
end
procedure tblcreate(n)
if /n then return "table()"
every 1 to n do
table()
end
procedure tblasgn(n)
static T
initial (T := table())[5] := 1
if /n then return "T[5] := 1"
every 1 to n do
T[5] := 1
end
procedure tblsub(n)
static T
initial (T := table())[5] := 1
if /n then return "T[5]"
every 1 to n do
T[5]
end
record point(x,y)
record bigrec(alpha, beta, gamma, delta, epsilon, figaro, guido, horatio)
procedure recconstr(n)
if /n then return "record(4,7)"
every 1 to n do
point(4,7)
end
procedure reccopy(n)
static R
initial R := point(4,7)
if /n then return "copy(R)"
every 1 to n do
copy(R)
end
procedure recfield(n)
static R
initial R := point(4,7)
if /n then return "R.f"
every 1 to n do
R.y
end
procedure bigfield(n)
static R
initial R := bigrec()
if /n then return "R2.f"
every 1 to n do
R.horatio
end
global ggg
procedure globasgn(n)
if /n then return "global := 1"
every 1 to n do
ggg := 1
end
procedure loclasgn(n)
local i
if /n then return "local := 1"
every 1 to n do
i := 1
end
procedure statasgn(n)
static i
if /n then return "static := 1"
every 1 to n do
i := 1
end
procedure readz(n)
static f
initial f := open("/dev/zero","ru")
if /n then return "reads(zero,8)"
every 1 to n do
reads(f, 8)
end
procedure writecon(n)
if /n then return "write(\"a...z\")"
every 1 to n do
write(sink, "abcdefghijklmnopqrstuvwxyz")
end
procedure writestr(n)
static s
initial s := "abcdefghijklmnopqrstuvwxyz"
if /n then return "write(s)"
every 1 to n do
write(sink, s)
end
procedure cxcreate(n)
if /n then return "create |\"a\""
every 1 to n do
create |"a"
end
procedure cxget(n)
static C
initial C := create |"a"
if /n then return "@C"
every 1 to n do
@C
end
|