We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18b5bd3 commit 34285aaCopy full SHA for 34285aa
src/cluster/src/Runner.cpp
@@ -151,7 +151,9 @@ int Runner::run()
151
}
152
progress.end();
153
sequences.resize(idx);
154
-
+ if (pred64 != NULL) {
155
+ Runner::set_datatype(pred64->get_datatype());
156
+ } else {
157
#pragma omp parallel for reduction(max:largest_count)
158
for (int i = 0; i < sequences.size(); i++) {
159
auto chrom = sequences[i];
@@ -163,6 +165,7 @@ int Runner::run()
163
165
largest_count = l_count;
164
166
167
168
+ }
169
clockDT.end();
170
cout << "Time for computing datatype: " << clockDT.total() << endl;
171
0 commit comments