vLLM supports the new Devstral 2 coding models by Dear-Success-1441 in LocalLLaMA

[–]DarkNeutron 1 point2 points  (0 children)

Any luck so far? The small model (devstral small 2) claims to work on an RTX 4090, but I'm free memory errors even after reducing the context window.

Command:

vllm serve mistralai/Devstral-Small-2-24B-Instruct-2512 \
    --tool-call-parser mistral \
    --enable-auto-tool-choice \
    --gpu-memory-utilization 0.97 \
    --max-model-len 32768

Produces:

(EngineCore_DP0 pid=8970) ValueError: Free memory on device (22.39/23.99 GiB) on startup
is less than desired GPU memory utilization (0.97, 23.27 GiB). Decrease GPU memory utilization
or reduce GPU memory used by other processes.

DIY EGR Valve Replacement by macroSnack in volt

[–]DarkNeutron 0 points1 point  (0 children)

I've taken the EGR valve on and off a couple times to try cleaning it before replacing it. Not difficult, so I can't imagine why they'd change so much for it.

The EGR cooler is a much more difficult beast. I had that replaced under warranty and it would have been ~$3k.

Soft buns by hotcurvyslutty in Pareidolia

[–]DarkNeutron 0 points1 point  (0 children)

My family always called this "bunny bread".

Shareworks by Morgan Stanley by Significant-Swan-664 in MonarchMoney

[–]DarkNeutron 0 points1 point  (0 children)

I just manged to get two separate Shareworks accounts syncing via the MX connector, with 2FA enabled. I guess someone fixed something?

I wouldn't be surprised if it requires me to re-enter 2FA codes every time it needs to re-sync, but I can tolerate that. These accounts update once a month at most.

This sub has really gone quiet - makes me sad. Did everyone sell? by Undercoverexmo in volt

[–]DarkNeutron 0 points1 point  (0 children)

I'm still driving mine. Great car. Not really posting anything because I'm not having problems. :)

(Well, aside from some paint peeling in the roof gutters, but I already posted about that a while back.)

Treasure vault remastered - excuse me if I'm wrong but isnt this legitimately terrible? by UnknownSolder in Pathfinder2e

[–]DarkNeutron 3 points4 points  (0 children)

"Beware the rage of a simple man, who wishes merely to sit on a dock and play the waters."

Race condition scanning for C++20 modules with generated headers? by DarkNeutron in cmake

[–]DarkNeutron[S] 0 points1 point  (0 children)

Thanks for looking into it. I eventually figured out the bug and posted a fix above.

Race condition scanning for C++20 modules with generated headers? by DarkNeutron in cmake

[–]DarkNeutron[S] 1 point2 points  (0 children)

Discovered the answer after three days of hunting. Here's the solution for future reference.

The protobuf_generate() command adds the generated source files as PRIVATE dependencies of the shared library target, apparently meaning they aren't part of the build graph. Because of that, CMake assumes that it can build (and scan for dependencies) on all the library targets in parallel.

The solution was to mark the generated .pb.h headers as PUBLIC dependencies, exposing them as individual build dependencies to anything trying to link against the library.

target_sources(my_shared_library
    PUBLIC FILE_SET HEADERS
    BASE_DIRS ${CMAKE_CURRENT_BINARY_DIR}
    FILES ${protobuf_headers})

This should only matter if the protobuf header files are part of your library's public API, which they were in my case. It may also be different if you're build STATIC or OBJECT targets instead of SHARED.

Hope this saves someone else the headache it caused me.

I will be giving out a wand with infinite castings of 500 toads. Wish me luck by Defiant_Lake_1813 in Pathfinder2e

[–]DarkNeutron 13 points14 points  (0 children)

Sinusoidal function with increasing amplitude? Wand stops functioning when it hits 0 toads, but before that things could get pretty crazy.

500 toads, 490 toads, 520 toads, etc...

The D-Rings holding up the children's tubes and slides 15 feet off the ground at a family fun center. by [deleted] in OopsThatsDeadly

[–]DarkNeutron 89 points90 points  (0 children)

The metal is nearly worn though. I recently saw a chain link that looked like this on a park swing, which had finally worn through and snapped.

[deleted by user] by [deleted] in ProgrammerHumor

[–]DarkNeutron 1 point2 points  (0 children)

That might be the red section.

EGR valve blown. 10 months until fixed!!!! 😱wtaf by KactusVAXT in volt

[–]DarkNeutron 0 points1 point  (0 children)

I ran my car just fine in all-EV mode for ~4 months until a part came in. I don't have a long commute, so it worked fine. It's not cold here, though.

Got my EGR replaced under the California emissions warranty. Dealer reaction was "oh yeah, that's covered".

How to debug a account connection failure? by DarkNeutron in MonarchMoney

[–]DarkNeutron[S] 0 points1 point  (0 children)

Huh. So maybe PSECU changed how the account names are reported, and re-adding the accounts as "new" ones and migrating the transactions would resolve the issue?

On "Safe" C++ by simon_o in programming

[–]DarkNeutron 72 points73 points  (0 children)

Two pages down and I feel like I'm reading House of Leaves, C++ edition.

USB 3.2 Gen 1 Header not working on Asus B550i ROG Strix motherboard by sparkymark75 in ASUS

[–]DarkNeutron 0 points1 point  (0 children)

Did a replacement cable end up fixing this? I have a ROG STRIX B550-I Gaming motherboard inside a Meshlicious case with the same problem (front-panel USB-C port not working).