1 /* Skeleton for benchmark programs.
2 Copyright (C) 2013-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
25 #include "bench-timing.h"
28 volatile unsigned int dontoptimize
= 0;
33 /* This loop should cause CPU to switch to maximal freqency.
34 This makes subsequent measurement more accurate. We need a side effect
35 to prevent the loop being deleted by compiler.
36 This should be enough to cause CPU to speed up and it is simpler than
37 running loop for constant time. This is used when user does not have root
38 access to set a constant freqency. */
39 for (int k
= 0; k
< 10000000; k
++)
40 dontoptimize
+= 23 * dontoptimize
+ 2;
43 #define TIMESPEC_AFTER(a, b) \
44 (((a).tv_sec == (b).tv_sec) ? \
45 ((a).tv_nsec > (b).tv_nsec) : \
46 ((a).tv_sec > (b).tv_sec))
48 main (int argc
, char **argv
)
51 struct timespec runtime
;
53 bool detailed
= false;
56 if (argc
== 2 && !strcmp (argv
[1], "-d"))
61 memset (&runtime
, 0, sizeof (runtime
));
63 unsigned long iters
, res
;
72 json_init (&json_ctx
, 2, stdout
);
75 json_attr_object_begin (&json_ctx
, FUNCNAME
);
77 for (int v
= 0; v
< NUM_VARIANTS
; v
++)
79 /* Run for approximately DURATION seconds. */
80 clock_gettime (CLOCK_MONOTONIC_RAW
, &runtime
);
81 runtime
.tv_sec
+= DURATION
;
84 timing_t total
= 0, max
= 0, min
= 0x7fffffffffffffff;
88 for (i
= 0; i
< NUM_SAMPLES (v
); i
++)
92 for (k
= 0; k
< iters
; k
++)
96 TIMING_DIFF (cur
, start
, end
);
104 TIMING_ACCUM (total
, cur
);
105 /* Accumulate timings for the value. In the end we will divide
106 by the total iterations. */
107 RESULT_ACCUM (cur
, v
, i
, c
* iters
, (c
+ 1) * iters
);
112 struct timespec curtime
;
114 memset (&curtime
, 0, sizeof (curtime
));
115 clock_gettime (CLOCK_MONOTONIC_RAW
, &curtime
);
116 if (TIMESPEC_AFTER (curtime
, runtime
))
128 json_attr_object_begin (&json_ctx
, VARIANT (v
));
130 json_attr_double (&json_ctx
, "duration", d_total_s
);
131 json_attr_double (&json_ctx
, "iterations", d_total_i
);
132 json_attr_double (&json_ctx
, "max", max
/ d_iters
);
133 json_attr_double (&json_ctx
, "min", min
/ d_iters
);
134 json_attr_double (&json_ctx
, "mean", d_total_s
/ d_total_i
);
138 json_array_begin (&json_ctx
, "timings");
140 for (int i
= 0; i
< NUM_SAMPLES (v
); i
++)
141 json_element_double (&json_ctx
, RESULT (v
, i
));
143 json_array_end (&json_ctx
);
147 json_attr_object_end (&json_ctx
);
151 json_attr_object_end (&json_ctx
);