Maxim Masiutin
Maxim Masiutin
> @maximmasiutin i don’t get why you choose different time control/engine settings at all. If you are on fishtest and select LTC SMP you get 8 threads and 20+0.2, so...
Are we developing for the user or for the fishtest?
> you want us to start testing at 32 threads and 1 hour per move? You know better, but my feeling that to test algorithm logic, current defaults of the...
The present issue (wish) https://github.com/glinscott/fishtest/issues/1611 is to allow to test on particular architectures, like only on workers with vnni512. We cannot do that at the moment. I don't dispute the...
Also confirm in 4.5.1
I have the same error still with Mineflayer 4.5.1 :( ``` Error: Event blockUpdate:(421, 71, -263) did not fire within timeout of 5000ms at onceWithCleanup (.\mineflayer\node_modules\mineflayer\lib\promise_utils.js:62:26) at placeBlockWithOptions (.\mineflayer\node_modules\mineflayer\lib\plugins\place_block.js:13:36) at...
@IceTank - thank you for letting us know. I also run a program with `set DEBUG=minecraft-protocol` and figured out that when there are many entities around a player (e.g. a...
@MinetaS The compiler gave warning on ``` uint32_t k = uint32_t(idx / d->span); ``` Therefore I changed it to ``` uint32_t k = static_cast(idx / d->span); ```
@MinetaS - here they are: ``` \src\misc.cpp(357,53): warning C5219: implicit conversion from 'int64_t' to 'double', possible loss of data \src\misc.cpp(378,22): warning C4244: 'initializing': conversion from 'long double' to 'double', possible...
There are the following warnings in the current (today's) master in this file. The MSVC2022 is set with default settings. ``` src\syzygy\tbprobe.cpp(544,43): warning C4267: 'initializing': conversion from 'size_t' to 'int',...