Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
XDG Integration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
JennaHuntsman
XDG Integration
Commits
379e2e13
Commit
379e2e13
authored
13 years ago
by
Merov Linden
Browse files
Options
Downloads
Patches
Plain Diff
STORM-746 : Fix bug in performance report output
parent
e752e918
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/integration_tests/llimage_libtest/llimage_libtest.cpp
+9
-9
9 additions, 9 deletions
indra/integration_tests/llimage_libtest/llimage_libtest.cpp
with
9 additions
and
9 deletions
indra/integration_tests/llimage_libtest/llimage_libtest.cpp
+
9
−
9
View file @
379e2e13
...
@@ -521,25 +521,25 @@ int main(int argc, char** argv)
...
@@ -521,25 +521,25 @@ int main(int argc, char** argv)
}
}
}
}
// Stop the perf gathering system if needed
if
(
LLFastTimer
::
sMetricLog
)
{
LLMetricPerformanceTesterBasic
::
deleteTester
(
LLFastTimer
::
sLogName
);
sAllDone
=
true
;
}
// Output perf data if requested by user
// Output perf data if requested by user
if
(
analyze_performance
)
if
(
analyze_performance
)
{
{
std
::
cout
<<
"Analyzing performance"
<<
std
::
endl
;
std
::
string
baseline_name
=
LLFastTimer
::
sLogName
+
"_baseline.slp"
;
std
::
string
baseline_name
=
LLFastTimer
::
sLogName
+
"_baseline.slp"
;
std
::
string
current_name
=
LLFastTimer
::
sLogName
+
".slp"
;
std
::
string
current_name
=
LLFastTimer
::
sLogName
+
".slp"
;
std
::
string
report_name
=
LLFastTimer
::
sLogName
+
"_report.csv"
;
std
::
string
report_name
=
LLFastTimer
::
sLogName
+
"_report.csv"
;
std
::
cout
<<
"Analyzing performance, check report in : "
<<
report_name
<<
std
::
endl
;
LLMetricPerformanceTesterBasic
::
doAnalysisMetrics
(
baseline_name
,
current_name
,
report_name
);
LLMetricPerformanceTesterBasic
::
doAnalysisMetrics
(
baseline_name
,
current_name
,
report_name
);
}
}
// Stop the perf gathering system if needed
if
(
LLFastTimer
::
sMetricLog
)
{
LLMetricPerformanceTesterBasic
::
deleteTester
(
LLFastTimer
::
sLogName
);
sAllDone
=
true
;
}
// Cleanup and exit
// Cleanup and exit
LLImage
::
cleanupClass
();
LLImage
::
cleanupClass
();
if
(
fast_timer_log_thread
)
if
(
fast_timer_log_thread
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment