We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6a9161 commit d5bf062Copy full SHA for d5bf062
benchmarks/oom_sort.cpp
@@ -112,7 +112,7 @@ void worker(T_SRC_CONTAINER_TYPE & data, State & state) {
112
}
113
114
115
- for(uint64_t i(count); i < state.entryCount; ++i) {
+ for(uint64_t i(count+1); i <= state.entryCount; ++i) {
116
data.push_back(i);
117
118
@@ -140,7 +140,7 @@ void worker(T_SRC_CONTAINER_TYPE & data, State & state) {
140
else {
141
for(uint64_t i(0), s(state.entryCount); i < s; ++i) {
142
if (data.at(i) != i+1) {
143
- std::cout << "Sort is BROKEN! SHOULD=" << i << "IS=" << data.at(i) << std::endl;
+ std::cout << "Sort is BROKEN! SHOULD=" << i+1 << "IS=" << data.at(i) << std::endl;
144
break;
145
146
if (i % 1000 == 0) {
0 commit comments