summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Baltescu <pauldb89@gmail.com>2013-03-08 11:44:25 +0000
committerPaul Baltescu <pauldb89@gmail.com>2013-03-08 11:44:25 +0000
commit1a742158e4460390b96bf15c48537d26c218d3be (patch)
tree8a9658731c287b7455b8c751101de39e0ce8d69c
parente362788ec318f0d9a349eeb2459cf72747502919 (diff)
Critical region for stderr write.
-rw-r--r--extractor/rule_factory.cc13
1 files changed, 8 insertions, 5 deletions
diff --git a/extractor/rule_factory.cc b/extractor/rule_factory.cc
index a5505ced..fbc62e50 100644
--- a/extractor/rule_factory.cc
+++ b/extractor/rule_factory.cc
@@ -201,11 +201,14 @@ Grammar HieroCachingRuleFactory::GetGrammar(const vector<int>& word_ids) {
}
Clock::time_point stop_time = Clock::now();
- cerr << "Total time for rule lookup, extraction, and scoring = "
- << GetDuration(start_time, stop_time) << " seconds" << endl;
- cerr << "Extract time = " << total_extract_time << " seconds" << endl;
- cerr << "Intersect time = " << total_intersect_time << " seconds" << endl;
- cerr << "Lookup time = " << total_lookup_time << " seconds" << endl;
+ #pragma omp critical (stderr_write)
+ {
+ cerr << "Total time for rule lookup, extraction, and scoring = "
+ << GetDuration(start_time, stop_time) << " seconds" << endl;
+ cerr << "Extract time = " << total_extract_time << " seconds" << endl;
+ cerr << "Intersect time = " << total_intersect_time << " seconds" << endl;
+ cerr << "Lookup time = " << total_lookup_time << " seconds" << endl;
+ }
return Grammar(rules, scorer->GetFeatureNames());
}