Line 0
Link Here
|
|
|
1 |
--- src/bench/graphene-bench-utils.c.orig 2018-12-04 11:34:21 UTC |
2 |
+++ src/bench/graphene-bench-utils.c |
3 |
@@ -271,7 +271,7 @@ graphene_bench_print_results (const char *impl, |
4 |
{ |
5 |
const char *d_unit, *round_unit, *iter_unit; |
6 |
double d = format_time (elapsed, &d_unit); |
7 |
- double round = format_time (avg, &round_unit); |
8 |
+ double my_round = format_time (avg, &round_unit); |
9 |
double iter = format_time (avg / bench_unit_rounds, &iter_unit); |
10 |
|
11 |
switch (bench_output) |
12 |
@@ -283,7 +283,7 @@ graphene_bench_print_results (const char *impl, |
13 |
" Per iteration: %.6f %s\n", |
14 |
path, (gint64) (num_rounds * bench_unit_rounds), impl, |
15 |
d, d_unit, num_rounds, |
16 |
- round, round_unit, bench_unit_rounds, |
17 |
+ my_round, round_unit, bench_unit_rounds, |
18 |
iter, iter_unit); |
19 |
break; |
20 |
|