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
e913a8f3
Commit
e913a8f3
authored
Oct 18, 2021
by
incardon
Browse files
Fixing 3-index
parent
81689eac
Pipeline
#3699
passed with stages
in 15 minutes and 20 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/SparseGridGpu/performance/performancePlots.cpp
View file @
e913a8f3
...
...
@@ -45,6 +45,8 @@ void write_test_report(report_sparse_grid_tests &report_sparsegrid_funcs, std::s
plotGetSingle2D
(
report_sparsegrid_funcs
,
testSet
,
plotCounter
);
plotGetNeighbourhood2D
(
report_sparsegrid_funcs
,
testSet
,
plotCounter
);
std
::
string
file_xml_results
(
test_dir
);
file_xml_results
+=
std
::
string
(
"/"
)
+
std
::
string
(
perfResultsXmlFile
);
...
...
@@ -310,7 +312,7 @@ void plotDense3D(report_sparse_grid_tests &report_sparsegrid_funcs, std::set<std
base
+
".gridScaling(#).GFlops.mean"
);
report_sparsegrid_funcs
.
graphs
.
add
(
"graphs.graph("
+
std
::
to_string
(
plotCounter
)
+
").x.data(0).source"
,
base
+
".gridScaling(#).gridSize.x"
);
report_sparsegrid_funcs
.
graphs
.
add
(
"graphs.graph("
+
std
::
to_string
(
plotCounter
)
+
").options.log_x"
,
true
);
report_sparsegrid_funcs
.
graphs
.
add
(
"graphs.graph("
+
std
::
to_string
(
plotCounter
)
+
").options.log_x"
,
true
);
int
bes
=
static_cast
<
int
>
(
report_sparsegrid_funcs
.
graphs
.
template
get
<
double
>(
base
+
".gridScaling(0).blockSize"
));
report_sparsegrid_funcs
.
graphs
.
add
(
"graphs.graph("
+
std
::
to_string
(
plotCounter
)
+
").y.data(0).title"
,
...
...
@@ -330,7 +332,7 @@ void plotDense3D(report_sparse_grid_tests &report_sparsegrid_funcs, std::set<std
base
+
".blockScaling(#).GFlops.mean"
);
report_sparsegrid_funcs
.
graphs
.
add
(
"graphs.graph("
+
std
::
to_string
(
plotCounter
)
+
").x.data(0).source"
,
base
+
".blockScaling(#).blockSize"
);
report_sparsegrid_funcs
.
graphs
.
add
(
"graphs.graph("
+
std
::
to_string
(
plotCounter
)
+
").options.log_x"
,
true
);
report_sparsegrid_funcs
.
graphs
.
add
(
"graphs.graph("
+
std
::
to_string
(
plotCounter
)
+
").options.log_x"
,
true
);
int
ges
=
static_cast
<
int
>
(
report_sparsegrid_funcs
.
graphs
.
template
get
<
double
>(
base
+
".blockScaling(0).gridSize.x"
));
report_sparsegrid_funcs
.
graphs
.
add
(
"graphs.graph("
+
std
::
to_string
(
plotCounter
)
+
").y.data(0).title"
,
...
...
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