diff options
author | andrea gesmundo <andrea.gesmundo@gmail.com> | 2011-07-08 15:33:47 +0200 |
---|---|---|
committer | andrea gesmundo <andrea.gesmundo@gmail.com> | 2011-07-08 15:33:47 +0200 |
commit | ed8a6e81d87f6e917ecffc290cde0a340b6aa03b (patch) | |
tree | 2f73aae0dbc224760908c563ebeeccaab10ebe66 /decoder/cdec.cc | |
parent | 3396d8de52872e47ec61be942e4b50170a789950 (diff) |
add cp time measure (def macro)
Diffstat (limited to 'decoder/cdec.cc')
-rw-r--r-- | decoder/cdec.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/decoder/cdec.cc b/decoder/cdec.cc index 5c40f56e..c671af57 100644 --- a/decoder/cdec.cc +++ b/decoder/cdec.cc @@ -19,11 +19,19 @@ int main(int argc, char** argv) { assert(*in); string buf; +#ifdef CP_TIME + clock_t time_cp(0);//, end_cp; +#endif while(*in) { getline(*in, buf); if (buf.empty()) continue; decoder.Decode(buf); } +#ifdef CP_TIME + cerr << "Time required for Cube Pruning execution: " + << CpTime::Get() + << " seconds." << "\n\n"; +#endif if (show_feature_dictionary) { int num = FD::NumFeats(); for (int i = 1; i < num; ++i) { |