Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
preetwinder
erp5
Commits
2b1881fd
Commit
2b1881fd
authored
13 years ago
by
Arnaud Fontaine
Browse files
Options
Download
Email Patches
Plain Diff
Convert use case elapsed time to hours rather than minutes for creating its plots.
parent
0306787c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
erp5/util/benchmark/report.py
erp5/util/benchmark/report.py
+7
-7
No files found.
erp5/util/benchmark/report.py
View file @
2b1881fd
...
...
@@ -168,12 +168,12 @@ def computeStatisticFromFilenameList(argument_namespace, filename_list,
use_case_suite
=
row_use_case_mapping_dict
.
get
(
idx
,
None
)
if
use_case_suite
:
current_count
=
int
(
row
)
current_duration
=
int
(
row_iter
.
next
()[
1
])
/
6
0.0
current_duration
=
int
(
row_iter
.
next
()[
1
])
/
360
0.0
if
not
current_count
:
continue
# For stats by iteration, used later on to generate cases per
#
minute
s plot for a given number of users
#
hour
s plot for a given number of users
by_iteration_dict
=
use_case_suite_dict
[
use_case_suite
]
count_stat_list
=
by_iteration_dict
[
'count_stats'
]
duration_stat_list
=
by_iteration_dict
[
'duration_stats'
]
...
...
@@ -322,7 +322,7 @@ def drawPlotDecorator(xlabel, ylabel):
return
inner
@
drawPlotDecorator
(
xlabel
=
'Time
elapsed (in minute
s)'
,
@
drawPlotDecorator
(
xlabel
=
'Time
(in hour
s)'
,
ylabel
=
'Use cases'
)
def
drawUseCasePerNumberOfUserPlot
(
axes
,
use_case_count_list
,
...
...
@@ -406,10 +406,10 @@ def drawConcurrentUsersUseCasePlot(axes,
minimum_sum
=
0
stddev
=
0
for
stat
in
use_case_stat
[
'duration_stats'
]:
minimum_sum
+=
stat
.
minimum
/
60.0
mean_sum
+=
stat
.
mean
/
60.0
maximum_sum
+=
stat
.
maximum
/
60.0
stddev
=
max
(
stddev
,
stat
.
standard_deviation
/
60.0
)
minimum_sum
+=
stat
.
minimum
mean_sum
+=
stat
.
mean
maximum_sum
+=
stat
.
maximum
stddev
=
max
(
stddev
,
stat
.
standard_deviation
)
use_case_per_hour_min
=
count
/
maximum_sum
use_case_per_hour_min_list
.
append
(
use_case_per_hour_min
)
...
...
This diff is collapsed.
Click to expand it.
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