diff options
author | bensong@google.com <bensong@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-07-02 21:49:30 +0000 |
---|---|---|
committer | bensong@google.com <bensong@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-07-02 21:49:30 +0000 |
commit | ead2b39ab1d7050c8ea41b79dd3ea774de23b9d3 (patch) | |
tree | 29cce8ade3f6e46ed4329d5c22c329ba908ed39c /bench | |
parent | af3d79a8c81f3f224a5eff53b0ca8615b884f922 (diff) |
git-svn-id: http://skia.googlecode.com/svn/trunk@4436 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'bench')
-rw-r--r-- | bench/bench_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/bench_util.py b/bench/bench_util.py index f3dd7af1a0..22ded9dd70 100644 --- a/bench/bench_util.py +++ b/bench/bench_util.py @@ -82,7 +82,7 @@ def parse(settings, lines): times = new_config.group(2) for new_time in re.finditer(time_re, times): current_time_type = new_time.group(1) - iters = [float[i] for i in + iters = [float(i) for i in new_time.group(2).strip().split(',')] current_time = sum(iters) / len(iters) benches.append(BenchDataPoint( |