Jean-Michaël Celerier

Results 315 issues of Jean-Michaël Celerier

For projects with many submodules, it may be worth it to enable access to the -j option for cloning which sets how many submodules git can clone in parallel

**Describe the bug** Simple code fails to build in C++23 mode. Boost flat_map has the same issue : https://github.com/boostorg/container/issues/282 **To Reproduce** ```c++ #include int main() { ankerl::unordered_dense::map f; f[0]; }...

bug

Repro: ```c++ #include int main() { boost::container::flat_map f; f[0]; } ``` The error: ``` $ clang++ foo.cpp -std=c++23 In file included from foo.cpp:1: In file included from /usr/include/boost/container/flat_map.hpp:29: In file...

I'm trying to make the prompt in the screen example evolve over time. However, if I move stream.prepare( prompt=prompt, negative_prompt=negative_prompt, num_inference_steps=50, guidance_scale=guidance_scale, delta=delta, ) from before the main loop to...

I'm seeing the following in my build log, when building with -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" : ``` -- Default CPU architecture for KFR is neon64 (set KFR_ARCH to override) Incorrect architecture set by...

@edumeneses started work on implementing haptics support. My investigations so far: - https://github.com/libsdl-org/SDL/issues/5125 - https://github.com/libsdl-org/SDL/issues/4859#issuecomment-951532706 - Do we know what are these magic HID packets for the DS5 active triggers?...

Hello, I'm trying to see how I can use TSF for synchronization. But when I try to access it whenever I get a beacon, which I parse through NL80211_ATTR_BSS, I...

GCC 14 does not seem to ship quadmath.h by default. If a library wants to do FLOAT128 (for instance: boost multiprecision) they must check for __has_include() - checking for BOOST_HAS_FLOAT128...

https://github.com/chriskohlhoff/asio/blob/57577c6db46a4e2de5351af2b185bf52696699a9/asio/include/asio/detail/config.hpp#L45-L71 Here ASIO_DYN_LINK is only useful for windows. This means that on linux, e.g. libfoo.so : defines ASIO_DYN_LINK, includes asio/src.hpp in a file bar : links against libfoo.so, also uses...