Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
e3ae36dc
Commit
e3ae36dc
authored
Jun 21, 2013
by
Roman Donchenko
Committed by
OpenCV Buildbot
Jun 21, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1033 from SpecLad:xls++
parents
e600beb4
57317c31
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
xls-report.py
modules/ts/misc/xls-report.py
+10
-10
No files found.
modules/ts/misc/xls-report.py
View file @
e3ae36dc
...
...
@@ -4,6 +4,7 @@ from __future__ import division
import
ast
import
logging
import
numbers
import
os
,
os
.
path
import
re
...
...
@@ -52,8 +53,7 @@ def collect_xml(collection, configuration, xml_fullname):
for
test
in
sorted
(
parseLogFile
(
xml_fullname
)):
test_results
=
module_tests
.
setdefault
((
test
.
shortName
(),
test
.
param
()),
{})
if
test
.
status
==
'run'
:
test_results
[
configuration
]
=
test
.
get
(
"gmean"
)
test_results
[
configuration
]
=
test
.
get
(
"gmean"
)
if
test
.
status
==
'run'
else
test
.
status
def
main
():
arg_parser
=
ArgumentParser
(
description
=
'Build an XLS performance report.'
)
...
...
@@ -79,7 +79,7 @@ def main():
sheet_conf
=
ast
.
literal_eval
(
sheet_conf_file
.
read
())
except
Exception
:
sheet_conf
=
{}
logging
.
debug
(
'no sheet.conf for
{}'
.
format
(
sheet_path
)
)
logging
.
debug
(
'no sheet.conf for
%
s'
,
sheet_path
)
sheet_conf
=
dict
(
global_conf
.
items
()
+
sheet_conf
.
items
())
...
...
@@ -90,14 +90,14 @@ def main():
config_names
=
[
p
for
p
in
os
.
listdir
(
sheet_path
)
if
os
.
path
.
isdir
(
os
.
path
.
join
(
sheet_path
,
p
))]
except
Exception
as
e
:
logging
.
warning
(
e
)
logging
.
warning
(
'error while determining configuration names for
%
s:
%
s'
,
sheet_path
,
e
)
continue
collection
=
{}
for
configuration
,
configuration_path
in
\
[(
c
,
os
.
path
.
join
(
sheet_path
,
c
))
for
c
in
config_names
]:
logging
.
info
(
'processing
{}'
.
format
(
configuration_path
)
)
logging
.
info
(
'processing
%
s'
,
configuration_path
)
for
xml_fullname
in
glob
(
os
.
path
.
join
(
configuration_path
,
'*.xml'
)):
collect_xml
(
collection
,
configuration
,
xml_fullname
)
...
...
@@ -117,7 +117,7 @@ def main():
for
i
,
caption
in
enumerate
([
'Module'
,
'Test'
,
'Image
\n
size'
,
'Data
\n
type'
,
'Parameters'
]
+
config_names
+
[
None
]
+
[
comp
[
'
from'
]
+
'
\n
vs
\n
'
+
comp
[
'to
'
]
for
comp
in
sheet_comparisons
]):
+
[
comp
[
'
to'
]
+
'
\n
vs
\n
'
+
comp
[
'from
'
]
for
comp
in
sheet_comparisons
]):
sheet
.
row
(
0
)
.
write
(
i
,
caption
,
header_style
)
row
=
1
...
...
@@ -143,13 +143,13 @@ def main():
sheet
.
write
(
row
,
5
+
i
,
None
,
no_time_style
)
for
i
,
comp
in
enumerate
(
sheet_comparisons
):
left
=
configs
.
get
(
comp
[
"from"
])
right
=
configs
.
get
(
comp
[
"to"
])
cmp_from
=
configs
.
get
(
comp
[
"from"
])
cmp_to
=
configs
.
get
(
comp
[
"to"
])
col
=
5
+
len
(
config_names
)
+
1
+
i
if
left
is
not
None
and
right
is
not
None
:
if
isinstance
(
cmp_from
,
numbers
.
Number
)
and
isinstance
(
cmp_to
,
numbers
.
Number
)
:
try
:
speedup
=
left
/
right
speedup
=
cmp_from
/
cmp_to
sheet
.
write
(
row
,
col
,
speedup
,
good_speedup_style
if
speedup
>
1.1
else
bad_speedup_style
if
speedup
<
0.9
else
speedup_style
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment