File: go

package info (click to toggle)
guile-1.6 1.6.7-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 14,572 kB
  • ctags: 10,040
  • sloc: ansic: 69,388; lisp: 14,775; sh: 11,163; asm: 1,514; makefile: 763; awk: 199; csh: 50
file content (43 lines) | stat: -rwxr-xr-x 710 bytes parent folder | download | duplicates (20)
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
#! /bin/awk -f

BEGIN {
  purpose = "report times used for init/start/stop";

  nmach = 0;

  test_single = "6";
  test_v0 = "10";
  test_v2 = "11";
  test_v4 = "12";
  test_v8 = "13";
}

{
  mach = $1
  test = $2
  iter = $3
  time = $6 + $8

  if (machi[mach] == 0) {
    machn[nmach] = mach;
    machi[mach] = 1;
    ++nmach;
  }

  us_per_op = time / iter * 1000000
  times[mach "_" test] = us_per_op;
}


END {
  for (i=0; i<nmach; ++i) {
    m = machn[i];

    single = times[m "_" test_single];
    v0 = times[m "_" test_v0];
    v2 = times[m "_" test_v2];
    v4 = times[m "_" test_v4];
    v8 = times[m "_" test_v8];
    printf ("%s|%3.1f|%3.1f|%3.1f|%3.1f|%3.1f\n", m, single, v0, v2, v4, v8);
  }
}