lhog

Results 5 issues of lhog

See https://github.com/daanx/mimalloc-bench/issues/117

Hi! Trying to build / bench mimalloc-bench inside a pristine ubuntu:20.04 container and I'm seeing the `./build-bench-env.sh packages lean` is not providing enough standard packages to kickstart from a bare...

Hi ThePhD! I'm on https://github.com/ThePhD/sol2/commit/f56b3c69 Config: ``` #define LUA_VERSION_NUM 501 #define SOL_USING_CXX_LUA 1 #define SOL_ALL_SAFETIES_ON 1 #define SOL_NO_CHECK_NUMBER_PRECISION 1 ``` Usertypes: ``` sol::state_view lua(L); auto gl = sol::stack::get(L, -1); gl.new_usertype("VAO",...

https://gist.github.com/lhog/fd82bf5e36cea94ef50b1701a2c7ba53 causes error: ``` error C4146: unary minus operator applied to unsigned type, result still unsigned ..... taskflow\algorithm\sort.hpp 42 ``` Basically it dislikes `-cacheline_size` in https://github.com/taskflow/taskflow/blob/v3.6.0/taskflow/algorithm/sort.hpp#L42 I believe it can...

help wanted
question

Hi! I was analyzing how the Multi Radix Sort works and I don't fully understand how you make sure it works correctly in all circumstances. The part that concerns me...