aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/profiling/qps/qps_diff.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/profiling/qps/qps_diff.py')
-rwxr-xr-xtools/profiling/qps/qps_diff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/profiling/qps/qps_diff.py b/tools/profiling/qps/qps_diff.py
index 65c845caa1..0654f45666 100755
--- a/tools/profiling/qps/qps_diff.py
+++ b/tools/profiling/qps/qps_diff.py
@@ -118,7 +118,7 @@ def diff(scenarios, loops, old, new):
for sn in scenarios:
old_data[sn] = []
new_data[sn] = []
- for i in range(0, loops):
+ for i in range(loops):
old_data[sn].append(_load_qps("%s.%s.%d.json" % (sn, old, i)))
new_data[sn].append(_load_qps("%s.%s.%d.json" % (sn, new, i)))