Marek Wydmuch

Results 129 comments of Marek Wydmuch

@GoingMyWay I've recently updated boost on my mac and also encountered this error, so it looks like some problem on cmake-boost level.

Hello @gastoncesarf, it looks like your Boost version is too old, try to upgrade it. Also, similar problem was discussed here: #243

Hello @JiankaiSun-SJTU-MVIG-training, second one almost succeed: ``` make[2]: *** No rule to make target '/home/jack/miniconda3/envs/uni/lib/python3.6/config-3.6m-x86_64-linux-gnu/libpython3.6.so', needed by 'bin/python3/vizdoom.so'. Stop. ``` Is this the right path for miniconda? (I have never...

``` python_library = os.path.join(sysconfig.get_config_var('LIBPL'), 'libpython{}.{}'.format(sysconfig.get_python_version(), dynamic_library_extension)) ... cmake_arg_list.append('-DPYTHON_LIBRARY={}'.format(python_library)) ``` This lines set wrong path to libpython.so for anaconda/minicodna in setup.py

I recently rewrote Python bindings, so they no longer need Boost.Python and should install via pip also for Anaconda/Miniconda Pythons. I am still testing them them for some memory leaks...

Hi @basil-ionin, no at all. Why did you close the issue? Have you found the reason for this behavior?

I've added `viz_render_all` as a method. We should first have the multiplayer functionality wrapped in some nice API to think about others.

Hello, sorry, I didn't have time to look into that. Eventually I will test SYNC mode extensively and will look for bugs, but I suspect that what you experience is...

There is parallelism, for example if two agents get next state in the same tic, then they can process it in parallel, but other agents who have already declared their...

@wjaskowski: I put it badly - I mean that there are 35 sync points per **in-game second**. Simply, there is sync point before every logic tic. @glample, @ebonyclock: I think...