mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-23 18:49:08 +08:00
Revert "fix: index variable in OpenMP 'for' statement must have signed integral type"
This reverts commit bc7a7eea2f
.
This commit is contained in:
parent
d89ff4667b
commit
b37de16633
@ -55,7 +55,7 @@ void Tesseract::PrerecAllWordsPar(const std::vector<WordData> &words) {
|
||||
# pragma omp parallel for num_threads(10)
|
||||
#endif // _OPENMP
|
||||
// NOLINTNEXTLINE(modernize-loop-convert)
|
||||
for (auto b = 0; b < blobs.size(); ++b) {
|
||||
for (size_t b = 0; b < blobs.size(); ++b) {
|
||||
*blobs[b].choices =
|
||||
blobs[b].tesseract->classify_blob(blobs[b].blob, "par", ScrollView::WHITE, nullptr);
|
||||
}
|
||||
|
@ -137,7 +137,7 @@ bool Parallel::Backward(bool debug, const NetworkIO &fwd_deltas, NetworkScratch
|
||||
#ifdef _OPENMP
|
||||
# pragma omp parallel for num_threads(stack_size)
|
||||
#endif
|
||||
for (auto i = 0; i < stack_size; ++i) {
|
||||
for (unsigned i = 0; i < stack_size; ++i) {
|
||||
stack_[i]->Backward(debug, *in_deltas[i], scratch, i == 0 ? back_deltas : out_deltas[i]);
|
||||
}
|
||||
if (needs_to_backprop_) {
|
||||
|
Loading…
Reference in New Issue
Block a user