Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Philip Trettner
aion
Commits
59d458be
Commit
59d458be
authored
Oct 26, 2018
by
Philip Trettner
Browse files
changed double to uint64_t in csv output
parent
50508b42
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/aion/Tracer.output.cc
View file @
59d458be
...
...
@@ -90,11 +90,11 @@ void write_summary_csv(const std::string &filename)
out
<<
'"'
<<
l
->
function
<<
'"'
<<
","
;
out
<<
e
.
count
<<
","
;
out
<<
e
.
cycles_total
<<
","
;
out
<<
e
.
cycles_total
/
double
(
e
.
count
)
<<
","
;
out
<<
e
.
cycles_total
/
e
.
count
<<
","
;
out
<<
e
.
cycles_min
<<
","
;
out
<<
e
.
cycles_max
<<
","
;
out
<<
e
.
cycles_total
-
e
.
cycles_children
<<
","
;
out
<<
(
e
.
cycles_total
-
e
.
cycles_children
)
/
double
(
e
.
count
)
;
out
<<
(
e
.
cycles_total
-
e
.
cycles_children
)
/
e
.
count
;
out
<<
"
\n
"
;
}
}
...
...
Write
Preview
Supports
Markdown
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