Add static chrono

This commit is contained in:
2021-10-19 17:34:28 +02:00
parent fec33b3bb9
commit da714d3b7f
6 changed files with 25 additions and 5 deletions

View File

@@ -110,6 +110,10 @@ struct NaiveDistribution : public TuplesDistribution {
, tuplesPerRank * (rank + 1) - 1
};
WITH_RANK << "range = "
<< range.first << " -> " << range.second
<< std::endl;
std::vector<ABCTuple> result(range.second - range.first, FAKE_TUPLE);
std::copy(all.begin() + range.first,
range.second >= all.size()