Skip to content
Snippets Groups Projects
Commit f946375d authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing performance test

parent 279d3867
No related branches found
No related tags found
No related merge requests found
......@@ -100,6 +100,7 @@ void grid_interpolation_benchmark(openfpm::vector<size_t> & nk_grid,
std::cout << "Time particles to mesh " << time_interpolation_p2m_mean.last() << std::endl;
measures.clear();
for (size_t j = 0 ; j < GRID_INTERPOLATION_TESTS ; j++)
{
......
......@@ -19,6 +19,7 @@ static inline void warning_set(int & warning_level, double mean, double mean_ref
{
int warning_level_candidate;
mean = 0;
if (mean - mean_ref < -2.0*sigma )
warning_level_candidate = -1;
else if (mean - mean_ref < 2.0*sigma)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment