Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sbalzarini Lab
S
Software
P
Parallel Computing
OpenFPM
openfpm_data
Commits
c1e9f1f1
Commit
c1e9f1f1
authored
Sep 11, 2021
by
incardon
Browse files
Fixing performance pdata
parent
9e797d23
Pipeline
#3574
passed with stages
in 16 minutes and 50 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/Vector/performance/vector_performance_test.cu
View file @
c1e9f1f1
...
...
@@ -582,7 +582,7 @@ BOOST_AUTO_TEST_CASE(vector_performance_write_report)
StandardXMLPerformanceGraph
(
"vector_performance_funcs.xml"
,
file_xml_ref
,
cg
);
addUpdtateTime
(
cg
,
1
,
"
p
data"
,
"vector_performance_funcs"
);
addUpdtateTime
(
cg
,
1
,
"data"
,
"vector_performance_funcs"
);
cg
.
write
(
"vector_performance_funcs.html"
);
}
...
...
src/Vector/performance/vector_performance_test.hpp
View file @
c1e9f1f1
...
...
@@ -393,7 +393,8 @@ BOOST_AUTO_TEST_CASE(vector_performance_write_report)
StandardXMLPerformanceGraph
(
"vector_performance_funcs.xml"
,
file_xml_ref
,
cg
);
addUpdtateTime
(
cg
,
1
,
"pdata"
,
"vector_performance_funcs"
);
createCommitFile
(
"pdata"
);
if
(
create_vcluster
().
rank
()
==
0
)
{
createCommitFile
(
"pdata"
);}
cg
.
write
(
"vector_performance_funcs.html"
);
}
...
...
src/util/performance/performance_util.hpp
View file @
c1e9f1f1
...
...
@@ -27,7 +27,7 @@ static void addUpdtateTime(GoogleChart & cg, int np, const std::string & base, c
std
::
string
prev_commit
=
exec
(
std
::
string
(
"cat commit_f_"
+
base
+
"_300"
).
c_str
());
str
<<
"<h3>Updated: "
<<
now
->
tm_mday
<<
"/"
<<
now
->
tm_mon
+
1
<<
"/"
<<
now
->
tm_year
+
1900
<<
" "
<<
now
->
tm_hour
<<
":"
<<
now
->
tm_min
<<
":"
<<
now
->
tm_sec
<<
" commit: "
<<
commit
<<
" run with: "
<<
np
<<
" processes<br>previous: <a href=
\"
"
<<
filename
<<
"_"
<<
prev_commit
<<
".html
\"
/a>"
<<
"</h3>"
<<
std
::
endl
;
<<
now
->
tm_sec
<<
" commit: "
<<
commit
<<
" run with: "
<<
np
<<
" processes<br>previous: <a href=
\"
"
<<
filename
<<
"_"
<<
prev_commit
<<
".html
\"
>here<
/a>"
<<
"</h3>"
<<
std
::
endl
;
cg
.
addHTML
(
str
.
str
());
}
...
...
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