Niklas Hambüchen
Niklas Hambüchen
Can confirm. I suspect this is fromhttps://github.com/ryantm/nixpkgs-update/issues/137#issue-548704095 > [ ] upstream remote is not set up Workaround in your nixpkgs checkout: ```sh git remote add upstream https://github.com/NixOS/nixpkgs.git git fetch upstream...
@icculus Just in case this input helps: Since a recent update (within the last 2 weeks; I'm not sure if it was 7.36 exactly or slightly before), my Dota's audio...
This lack seems to be even more pronounced when using thread-local storage in addition: ```c++ #pragma omp parallel { // Thread-local storage (TLS) state to avoid allocations. std::vector myTLSVector; myTLSVector.reserve(10000);...
Please somebody check that the resulting docs look right. I tried `make build_doc_html` but it always output ``` Missing xsltproc. doc/jemalloc.html not (re)built. ``` even though `xsltproc` is on `PATH`....
Why does `remap()` not just take a lambda? The mapping is just a pure function, there seems to be no need to represent it explicitly in memory. Getting rid of...
@ilvokhin Thanks for the explanation! So really, the [docs](https://jemalloc.net/jemalloc.3.html) of `opt.dirty_decay_ms` `opt.muzzy_decay_ms` should be updated. They don't mention the `background_thread` at all. Their docs should say that purging will be...
> the [docs](https://jemalloc.net/jemalloc.3.html) should be updated I made PR #2819 to improve the docs.
@snexus I got multiple problems going in the same direction. ## `llamacpp` without CUDA support The default instructions from https://llm-search.readthedocs.io/en/latest/installation.html#install-latest-version apparently got me a `llama-cpp-python` without CUDA support on Ubuntu...
> `openai.NotFoundError: 404 page not found` Aha, for ollama you need to apparently use: ```yaml base_url: "http://127.0.0.1:11434/v1" ``` instead of ```yaml base_url: "http://127.0.0.1:11434" ``` Would be great if that could...
> So a core question is whether you'd like to be able to turn off all these features in order to create a DwarFS image with billions of files, or...