[Moses-support] Mgiza - lock contention?

2014-12-22 Thread Marcin Junczys-Dowmunt
Hi, In mgiza, I noticed that the HMM model is a lot slower with 8 threads than with 4 threads. It becomes a lot worse for 16 threads or more. Multi-threading is the main feature of mgiza, so this kind of defies the whole sense of the thing to the extend that I would say mgiza is broken. Haven't

Re: [Moses-support] Mgiza - lock contention?

2014-12-22 Thread Rico Sennrich
Marcin Junczys-Dowmunt writes: > > > will try to have a look what is going on there (I dread the code), but if anyone has some ideas, the same experience or wants to help that would be most welcome. It seems Model 1 is fine, and speed improves with a greater number of threads, but the other mo

Re: [Moses-support] Mgiza - lock contention?

2014-12-22 Thread Marcin Junczys-Dowmunt
Hi Rico, there is more going on than that. I just disabled all those locks for testing and nothing changes (funnily it's not even crashing). I will try to have a look. Rewriting everything so each thread get's thread-specific datastructures might be more than I am ready to do though. On the ot

[Moses-support] ERROR

2014-12-22 Thread Benyamin Bosari
Hi, When I run this command "./bjam --with-irstlm=/media/Data/MOSES/irstlm-5.80.06 -j8" in order to link IRSTLM with MOSES, this error message appears:  ...failed gcc.link lm/bin/model_test.test/gcc-4.7/release/debug-symbols-on/link-static/threading-multi/model_test..skipped model_test.run

[Moses-support] First Call for Participation: WMT 2015 Machine Translation Shared Tasks

2014-12-22 Thread Barry Haddow
EMNLP 2015 TENTH WORKSHOP ON STATISTICAL MACHINE TRANSLATION Shared Tasks on news translation, automatic post-editing, quality estimation and metrics. September 2015, in conjunction with EMNLP 2015 in Lisbon, Portugal http://www.statmt.org/wmt15/ As part of the EMNLP WMT15 workshop, as in pre

Re: [Moses-support] Mgiza - lock contention?

2014-12-22 Thread Marcin Junczys-Dowmunt
Hi, would anyone object to making mgiza depend on -std=c++11? I checked, it compiles and works. Since I am contemplating to bring some order into the threading issues, I would appreciate to get rid of pthread, boost::thread and make use of , and stuff. Also it seems is faster than pthreads m

Re: [Moses-support] Mgiza - lock contention?

2014-12-22 Thread Hieu Hoang
i don't mind. I've made a branch PRE_CPP11 just in case nothing works and you change your mind On 23 December 2014 at 04:13, Marcin Junczys-Dowmunt wrote: > Hi, > would anyone object to making mgiza depend on -std=c++11? I checked, it > compiles and works. Since I am contemplating to bring so