SShortSingh.
Back to feed

LM Studio runtime auto-update silently breaks model loading on RTX 5090

0
·1 views

A background auto-update of LM Studio's CUDA runtime extension pack caused model loading to fail on an RTX 5090 GPU, with the app displaying only a cryptic large unsigned exit code and no useful explanation. The exit code, when converted to hexadecimal, revealed an NTSTATUS driver-level error, pointing to a CUDA kernel crash rather than any issue with the model file or configuration. Developer logs identified the root cause as a broken flash-attention kernel fallback path in CUDA 12 runtime v2.27.1, which lacks proper support for NVIDIA's Blackwell architecture (sm_120). Rolling back to runtime v2.25.2 via LM Studio's Settings > Runtime menu restored functionality immediately, without any model re-download or driver changes. Users are advised to disable the "Auto-update selected Runtime Extension Packs" setting until a fixed runtime is released, and to check runtime versions first whenever a previously working model suddenly fails to load.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

One Developer Rebuilt His Job Search as a Data Pipeline — Here's How

A software developer shared how he restructured his job search by treating it as a staged pipeline rather than a simple to-do list. He defined distinct stages — from sourcing and evaluating roles to tracking outcomes like ghosting, closures, or voluntary rejections — to identify exactly where opportunities were being lost. A scoring system was added at the front end to prioritize roles based on personal fit criteria, ensuring that hard dealbreakers could override otherwise strong matches. This approach reduced wasted effort on low-fit applications and eliminated reliance on memory for follow-ups. The developer argues that separating outcome types and scoring roles upfront provides actionable data that a flat checklist never can.

0
ProgrammingDEV Community ·

vizcrush Launches After Developer Scraps Unverified WASM Performance Claims

Developer tool vizcrush, a set of data visualization primitives built in Rust and compiled to WebAssembly, went open source this week with all 11 packages published on npm. Before launch, the author discovered that a claimed 5–10x WASM performance boost over the JavaScript core had no supporting benchmark data and was contradicted by the repo's own control runs. Only the 32x speed advantage of the JS core over a rival npm downsampling package was backed by actual measurements. Benchmarking also revealed that enabling the SIMD128 compiler flag produced no meaningful runtime improvement for the tested algorithms, prompting a public retraction documented as an architectural decision record in the repository. The project now follows a policy of tying all performance claims directly to verified measurements before publication.

0
ProgrammingDEV Community ·

Airflow Scheduling: When to Use Cron Expressions vs. Asset-Based Triggers

Apache Airflow offers two primary scheduling approaches for data pipelines: time-based cron expressions and Asset-based triggers, each suited to different use cases. Cron scheduling runs a DAG at a fixed time regardless of whether upstream data has actually changed, making it predictable but potentially inefficient. Asset-based scheduling, introduced in Airflow 2.4 as Datasets and renamed Assets in Airflow 3.0, triggers a DAG only when dependent data has been successfully updated. Assets use the concepts of inlets and outlets to track what data a task consumes and produces, supporting data lineage, governance, and audit trails. Choosing between the two depends on whether a pipeline's dependencies are better described by time or by the availability of updated data.

0
ProgrammingDEV Community ·

Vendor-Neutral 2026 Conversational AI Report Reveals Key Trends in Agents and Infrastructure

A free, open-source report built entirely from primary data — including GitHub, Hugging Face, npm/PyPI, job listings, and search trends — maps the state of conversational AI in 2026 across five core layers: interface, orchestration, model, data/memory, and infrastructure. US search interest in 'AI agents' surged nearly 700-fold between early 2023 and 2026, with 'agent' now the dominant term in search data, top repositories, and hiring categories. The Model Context Protocol went from near-zero search volume before late 2024 to tens of thousands of monthly searches within 18 months, rapidly becoming assumed infrastructure in developer tooling. Self-hosting projects like Ollama and llama.cpp lead GitHub star counts, though the report cautions this reflects developer momentum rather than confirmed enterprise adoption. On AI search visibility, 24 of 28 tracked buyer-intent queries now trigger Google AI Overviews, with recommendations drawn heavily from third-party aggregator lists — signaling a shift in how developer tools need to approach discoverability.

LM Studio runtime auto-update silently breaks model loading on RTX 5090 · ShortSingh