Martin Leitner-Ankerl
Martin Leitner-Ankerl
Currently the `ALLOW_FLAGS_FOR_ENUM` has to be in global scope to work, which can be a bit cumbersome (see #26). Instead, I propose two different macros: ```cpp #define ALLOW_FLAGS_FOR_ENUM(Name) inline void...
There exist many usages of `fuzzed_data_provider` where it is evaluated directly in the function call. Unfortunately, [the order of evaluation of function arguments is unspecified](https://en.cppreference.com/w/cpp/language/eval_order), and a simple example shows...
`CCheckQueue` has stored its work items in a `queue`, but made no guarantee about the order of elements in that container. This PR extracts that data storage handling into a...
We recently (in #28906) had OOM problems due to incorrect memory usage estimation. When `PoolResource` is used the estimation can be brittle because when implementing memusage estimation for a container...
TL;DR: this change improves sync time on my PC by ~6%. While syncing when the CCoinsViewCache gets full it is flushed to disk and then memory is freed. Depending on...
I'm currently using hyperfine to benchmark something where a single benchmark run takes about 2 hours. It would be nice if the ETA would updated more often (say once every...
**Is your feature request related to a problem? Please describe.** I want to use svector in unordered_dense, that's not possible due to lack of allocator support. **Describe the solution you'd...
**Describe the bug** or `v.assign(1000, v[0])`. This should work, it does so per the standard for std::vector, even when it needs to resize. See https://stackoverflow.com/a/18788810/48181
### What is the issue? When I try the llama3 model I get out of memory errors. I have 64GB of RAM and 24GB on the GPU. ``` ❯ ollama...
Mouse support for htop works perfectly when not in tmux. But when inside tmux, clicks seem to be captured incorrectly. For whatever reason it always opens the "Sort by" menu,...