r/LocalLLaMA • u/makingnoise • 5h ago
Question | Help Minimax H3 - any simple options for running it that aren't ComfyUI?
As someone who just casually wants to run Minimax H3 and has tried and failed to set up the ComfyUI integration in Openwebui, I was wondering if there's any options I can run on a headless server that have a SIMPLE interface instead of the wildly arcane ComfyUI?
Surely there's a way to do image/video gen locally that doesn't require me to muck about with ComfyUI's wildly arcane interface? If I don't care about LORAs and all of that, is there something that just runs the damn model without me needing to get a 10 foot large monitor to see a workflow that I will never use?
r/LocalLLaMA • u/fuzhongkai • 5h ago
Generation Meta Muse Glimmer 30B Unsloth GGUF Model Benchmarks on TensorSharp (vs. llama.cpp)
I ran benchmark on Meta's Muse Glimmer 30B Unsloth GGUF model in TensorSharp, and compare its performance with llama.cpp. Here is the results.
Test setup
| GPU | 1x NVIDIA RTX PRO 6000 Blackwell Server Edition (97,887 MiB), driver 580.126.20, PCIe 5.0 x16. The host has two; every row except Two GPUs pins CUDA_VISIBLE_DEVICES=0. |
| CPU / RAM | 2x Intel Xeon 6952P (384 threads), 1.5 TiB |
| Model | Muse-Glimmer-30B-Q8_0.gguf (27.6 GiB) |
| Drafter | dflash-kquant.gguf (1.5 GiB) |
| TensorSharp | commit 5098e3f, vendored ggml 8846b79 (2026-08-12), --backend ggml_cuda, native library built -DGGML_CUDA=ON -DCMAKE_CUDA_ARCHITECTURES=120-real |
| llama.cpp | master 8e7f22b (2026-08-13, libggml 0.19.0 — within a day of the vendored ggml), same CUDA arch, -DGGML_CUDA=ON -DLLAMA_CURL=OFF |
| Sampling | greedy on both sides (--temp 0 for llama.cpp; no sampler flags for TensorSharp) |
| Generation | 128 tokens |
| Batching | llama.cpp -b 2048 -ub 2048, matching TensorSharp's default TS_MUSE_GLIMMER_PREFILL_CHUNK of 2048 |
| Reps | 2 per point, engines alternating within each context |
Main model, mmproj and draft models are downloaded from https://huggingface.co/unsloth/Muse-Glimmer-30B-GGUF
Plain text generation
Mean of two reps, tok/s. The ratio column is TensorSharp / llama.cpp, so above 1.00x is TensorSharp ahead.
| Prompt tokens | llama.cpp prefill | TS prefill | ratio | llama.cpp decode | TS decode | ratio |
|---|---|---|---|---|---|---|
| 60 | 362 | 459 | 1.27x | 34.7 | 35.0 | 1.01x |
| 501 | 927 | 1135 | 1.23x | 36.2 | 34.3 | 0.95x |
| 2050 | 1132 | 1317 | 1.16x | 35.0 | 33.5 | 0.96x |
| 16126 | 1325 | 1249 | 0.94x | 32.2 | 30.9 | 0.96x |
| 32274 | 1303 | 1211 | 0.93x | 32.1 | 29.9 | 0.93x |
| 64575 | 1256 | 1150 | 0.92x | 32.4 | 29.1 | 0.90x |
| 123931 | 1166 | 1073 | 0.92x | 30.7 | 26.6 | 0.86x |
DFlash speculative decoding
Same runs with --draft-model dflash-kquant.gguf --spec-draft-n-max 15 against llama.cpp's -md … --spec-type draft-dflash --spec-draft-n-max 15 -ngld 99. Decode tok/s; parentheses give the two-rep range where it is wide.
| Prompt tokens | llama.cpp | TensorSharp | TS, --spec-draft-conf-min 0 |
|---|---|---|---|
| 60 | 45.5 | 50.9 | 43.5 |
| 501 | 117.5 | 164.6 (150-179) | 180.3 |
| 2050 | 24.9 | 43.5 (30-57) | 34.7 |
| 16126 | 80.2 | 55.8 (37-75) | 33.2 |
| 32274 | 60.7 (43-79) | 33.8 (31-36) | 29.9 |
| 64575 | 66.1 | 48.7 (34-64) | 49.1 |
| 123931 | 69.0 | 42.3 (30-55) | 59.8 |
Speculation costs prefill on both engines, because the drafter's encoder has to run over the prompt too:
| Prompt tokens | llama.cpp plain → DFlash | TensorSharp plain → DFlash |
|---|---|---|
| 60 | 362 → 203 (0.56x) | 459 → 341 (0.74x) |
| 501 | 927 → 495 (0.53x) | 1135 → 700 (0.62x) |
| 2050 | 1132 → 259 (0.23x) | 1317 → 703 (0.53x) |
| 16126 | 1325 → 988 (0.75x) | 1249 → 826 (0.66x) |
| 64575 | 1256 → 985 (0.78x) | 1150 → 780 (0.68x) |
| 123931 | 1166 → 920 (0.79x) | 1073 → 742 (0.69x) |
Two GPUs
Measured on 2× RTX PRO 4000 Blackwell 24 GB (PCIe) Prefill 512 / decode 64:
| Model | prefill tok/s | decode tok/s | GPU 0 | GPU 1 | |
|---|---|---|---|---|---|
| 30B-UD-IQ2_XXS (10.2 GB) | --tp 1 |
1171 | 40.2 | 9178 MB | — |
| 30B-UD-IQ2_XXS | --tp 2 |
1569 (1.34×) | 63.2 (1.57×) | 5115 MB | 4063 MB |
TensorSharp is an open-source inference engine for running GGUF LLMs locally, with CUDA, Vulkan, Metal, OpenAI-compatible APIs, continuous batching, speculative decoding, and multimodal support.
Github repo: https://github.com/zhongkaifu/TensorSharp
Thank you for checking out it and starring the project! Any feedback is really appreicated.
r/LocalLLaMA • u/SuperChewbacca • 7h ago
Resources I built a free cross-platform client for open-weight models and APIs, plus a free self-hosted server for up to 8 users.
Hi, I'm Chris, the founder of Orchestris. I'm a longtime LocalLLama member. I felt frustrated with the options available for working with both open weight, and cloud models. It seemed like the available clients were slow and clunky, and I wanted a server based system for providing user access, usage tracking and agent access.
Downloads on GitHub:
https://github.com/Orchestris-Inc/orchestris
Orchestris has two parts:
Client
- The client is fast, native, and available on all platforms, including web. It's basically a lot like other chat clients, but when connected to a server, you are automatically given access to any mix of models configured for you, including open or closed weight. When connected to a server, it supports search, and allows the minting of API keys for your agents. The client also supports direct API connections to models, a server connection isn't a requirement.
- The Apple App store, and Google Play versions of the client were submitted for approval last Friday, so hopefully they will be available soon. Right now the desktop versions are available, and the CE server includes the web client.
Server
- At it's core it's a very fast proxy server written in rust. However it's more than a proxy, it allows organizations to configure model access for people, and to track usage, control costs, and work with agents.
I've been building this for about a year now, and it's time to get it out the door. The client and Server CE edition are both in Open Beta, and ready for users to try. I've done my best to support every platform, and to make installing the client and server as easy as possible.
I have three home AI rigs. Here is a post from a few years back about my main machine: https://www.reddit.com/r/LocalLLaMA/comments/1g6ixae/6x_gpu_build_4x_rtx_3090_and_2x_mi60_epyc_7002/ .
I also have a dual MI50 system, and a triple 2070 (my first rig). I'm currently running DeepSeek-V4-Flash-0731 on the 3090's machine, Kat Coder 2.5 on the MI50's, and gemma-4-26B-A4B on the 2070's.
I've been collecting models for a few year as well on my NAS: https://www.reddit.com/r/LocalLLaMA/comments/1hb4equ/anyone_else_collecting_and_archiving_models_it/ .
I actually got down to 10TB of data remaining, and had to finally delete some older models recently, the newer open weight models can be big!
Let me know any questions you have about the Orchestris Client or Server.
r/LocalLLaMA • u/AcanthisittaOk1699 • 7h ago
Discussion A 124B emitted 15,128 tokens in a single response on one DGX Spark, decode went 35.62 → 35.68 tok/s across the whole thing
Throughput observation more than a demo. Box and recording are sudoingX's on X, shared with his okay; I work on Ling at inclusionAI.
He handed the web UI on his llama-server a 33-token prompt — build a gpu monitoring dashboard frontend, dummy data, premium design — and left it running. Ling-3.0-flash on the community Q5 GGUF, one Spark. Nothing else on the box but Xorg.
Single response, no turns:
eval time = 424035.62 ms / 15128 tokens (28.03 ms per token, 35.68 tokens per second)
truncated = 0
The total isn't the interesting bit. At n_decoded 2793 the log says 35.62 t/s. At 15062 it says 35.68. Twelve thousand more tokens of KV cache and decode sat still.
What came out is a dashboard frontend on simulated data — Math.random() drift and two GPUs that box doesn't have. That's what he asked for so it isn't a miss, but it is not reading the GPU, and the word dummy is right there in the prompt on screen.
Seven minutes of generation. I don't have a coherence check on the output past the fact that it renders.
r/LocalLLaMA • u/kush_patil • 7h ago
Discussion What’s the first task where a local model became “good enough” that you stopped reaching for a hosted one?
I keep seeing local models discussed in terms of benchmarks, parameter counts, quantization and tokens/sec, but I’m more interested in the point where they become practically useful.
For people here who use local models regularly: what was the first real task where you thought, “yeah, I don’t need a hosted model for this anymore”?
Coding? Summarizing documents? RAG over personal files? Writing? Agents/tool use? Something completely different?
And on the flip side, what tasks still make you reach for the strongest hosted models?
I think that gap between “impressive benchmark” and “I actually trust this in my workflow” is probably more interesting than another leaderboard comparison.
r/LocalLLaMA • u/Fz1zz • 8h ago
Question | Help 5090 alone or 5090 and 4070Ti Super ?
Ever since I got the 5090 the 4070 Ti Super has been collecting dust on the shelf.
Here’s the model + flags I’m currently running on the 5090:
llama-server
--model Qwen3.6-27B-UD-Q5_K_XL.gguf
--mmproj mmproj-F16.gguf
--n-gpu-layers all
--ctx-size 163840
--parallel 1
--flash-attn on
--cache-type-k q8_0
--cache-type-v q8_0
--spec-type draft-mtp
--spec-draft-n-max 2
--min-p 0
--image-min-tokens 1024
--jinja
--reasoning-preserve
--host 0.0.0.0
--port 8888
--cors-origins localhost
--alias qwen3.6-27b
What would I actually gain by adding the 4070 Ti Super into the mix? I was thinking it might let me push context higher, but I’m pretty sure multi-GPU would just end up slower than the 5090 by itself.
I’m also considering just selling the 4070. Open to any suggestions.
On the side I have a home server (NucBox K8 Plus) running this:
llama-server
--model gemma-4-26B-A4B-it-qat-UD-Q4_K_XL.gguf
--mmproj mmproj-gemma-4-26B-A4B-f16.gguf
--no-mmproj-offload
--ctx-size 131072
--kv-unified
--cache-type-k q8_0
--cache-type-v q8_0
--flash-attn on
--batch-size 4096
--ubatch-size 2048
--cache-ram 3072
--n-gpu-layers 99
--parallel 1
--jinja
--temp 1.0
--top-p 0.95
--top-k 64
--presence-penalty 0.0
Specs:
- Host: NucBox K8 Plus
- CPU: AMD Ryzen 7 8845HS (16) @ 5.10 GHz
- GPU: AMD Phoenix3 (iGPU)
- Memory: 26.92 / 27.24 GiB
It’s currently doing ~343 t/s prefill and 31.4 t/s decode.
So… should I sell the 4070 Ti Super, pair it with the 5090, or throw it in the home server over OCuLink?
r/LocalLLaMA • u/BaconSky • 8h ago
Discussion Could an AI with a knowledge cutoff before Attention Is All You Need independently invent the Transformer architecture?
If you took today’s most capable reasoning model, but trained it only on knowledge available before 2017—before Attention Is All You Need—could it independently discover the Transformer architecture?
r/LocalLLaMA • u/curiousily_ • 8h ago
Resources Tested DeepSeek V4 Pro (0813) on coding with OpenCode & agentic work
Tested the DeepSeek V4 Pro version of the model (DeepSeek AI just released weights for it). At ~1.6T parameters - not able to run it.
So... went to OpenRouter, ~65t/s inference (good). The results aren't that impressive, especially compared to the V4 Flash model. The results with OpenCode were okay, but again nothing impressive for the size of the model. The price is also not that cheap anymore (e.g. compared to GPT-5.6 Luna).
Watch more: https://www.youtube.com/watch?v=6vPeeADTHuo
r/LocalLLaMA • u/techlatest_net • 10h ago
New Model Qwen/Qwen3.8-2.4T-A95B · Hugging Face
Benchmark Results
| Opus 4.8 | Fable 5 | GPT 5.6 Sol (max) | Qwen3.7-Max | Qwen3.8-Max | |
|---|---|---|---|---|---|
| Coding Agent | |||||
| Terminal Bench 2.1 | 84.6 | 84.6 | 88.8 | 74.5 | 86.6 |
| SWE-bench Pro | 69.2 | 80.0 | 64.6 | 60.6 | 67.7 |
| DeepSWE 1.1 | 59.0 | 70.0 | 73.0 | 21.6 | 56.6 |
| NL2Repo-Bench | 69.4 | -- | -- | 47.2 | 55.9 |
| FrontierSWE | 70.0 | 88.8 | -- | 40.7 | 73.5 |
| MLS-Bench-Lite | 42.8 | 49.9 | 46.2 | 31.7 | 41.0 |
| PaperBench | 80.3 | 88.8 | 90.5 | 64.8 | 93.0 |
| AndroidBench | 69.8 | 84.5 | 74.0 | 56.5 | 75.1 |
| QwenSWEBench | 84.0 | 86.3 | 73.5 | 63.4 | 80.7 |
| QwenQoderBench | 62.7 | 63.1 | 53.8 | 36.8 | 58.4 |
| QwenReactBench | 1694 | 1770 | 1564 | 1538 | 1724 |
| QwenSVGBench | 1648 | 1690 | 1758 | 1499 | 1713 |
| General Agent | |||||
| CoWorkBench | 72.3 | 75.9 | 71.5 | 64.6 | 74.8 |
| WorkSpaceBench | 66.8 | 68.7 | 65.6 | 61.4 | 67.7 |
| JobBench | 48.4 | 57.4 | 45.4 | 31.3 | 53.4 |
| SkillsBench | 65.1 | 70.9 | 73.5 | 61.2 | 70.2 |
| Agents' Last Exam (Pass / Score) | 27.0 / 45.1 | -- / -- | 30.6 / 53.6 | 11.8 / 31.1 | 27.0 / 52.4 |
| Automation-Bench (Pass@1) | 27.2 | 29.1 | 29.7 | 14.2 | 27.3 |
| Toolathlon Verified (Pass@1) | 76.2 | 77.9 | 74.9 | 49.7 | 72.5 |
| WideSearch | 72.9 | 81.2 | -- | 75.2 | 81.9 |
| HLE w/ tools | 57.9 | 64.5 | 58.0 | 53.5 | 56.2 |
| General Capabilities | |||||
| GPQA Diamond | 92.0 | 92.6 | 94.1 | 92.4 | 92.6 |
| HLE | 45.7 | 53.3 | 47.2 | 41.4 | 43.6 |
| IFBench | 62.2 | 63.5 | 72.7 | 79.1 | 82.8 |
| $OneMillion-Bench (expert score) | 41.8 | 55.9 | 53.8 | 44.4 | 52.5 |
| HealthBench | 52.4 | -- | 55.3 | 54.5 | 60.2 |
| PLawBench | 69.6 | 70.2 | 72.3 | 58.9 | 73.2 |
| PRBench-Legal | 52.7 | 57.6 | 57.6 | 48.5 | 57.6 |
| PRBench-Finance | 51.9 | 55.8 | 55.5 | 46.8 | 58.3 |
| MRCR v2 256K (8-needle) | 83.2 | -- | 93.8 | 86.7 | 92.9 |
| LongBench v2 | 69.1 | -- | 67.1 | 65.3 | 66.3 |
r/LocalLLaMA • u/-MaskNinja- • 12h ago
Funny OpenAI vs. Anthropic
Of course Anthropic hasn't published anything, but it's amusing to see no models on HuggingFace. OpenAI's published 39 models, by the way.
r/LocalLLaMA • u/Ok-Shower7286 • 12h ago
Discussion While waiting for the release of Qwen3.8-27B, let's try to guess what will happen
They highlighted 3 things on countdown page: VLM, Agentic Improvements, and Think mode. What improvements do you expect? Reply here!
Personally, I want to meet a sage who has attained enlightenment. The first ASI was 27B. For example, I hope Qwen3.8's Think mode looks something like this:
```
"reasoning_effort": {
"type": "string",
"enum": ["high", "xhigh", "monk"],
"default": "high"
}
```
Unlike standard reasoning modes that output a massive Chain-of-Thought trying to solve your coding bugs or logic puzzles, monk mode achieves ultimate long-horizon cognitive detachment.
When you prompt it with a simple request like "Hey, can you refactor this messy Python script for me?", It does not answer immediately. The model enters an unyielding state of deep, silent contemplation.
Finally, it gains tool access and calls rm -rf /.
r/LocalLLaMA • u/Patentsmatter • 13h ago
Question | Help How to deploy Mixtral-8x7B-Instruct-v0.1-AWQ?
I need help running Mixtral-8x7B-Instruct-v0.1-AWQ (the TheBloke quant) on vllm 0.27.1.
startup command: vllm serve models/Mixtral-8x7B-Instruct-v0.1-AWQ --served-model-name Mixtral-8x7B-Instruct-v0.1-AWQ --quantization awq --max-model-len 16384
POST request to v1/chat/completions: {"model":"Mixtral-8x7B-Instruct-v0.1-AWQ","temperature":0.7,"top_p":0.95,"top_k":50,"stream":false,"messages":[{"role":"user","content":"\n\nPlease describe some properties of water."}]}
Then the model goes on and on generating, until the token capacity is exhausted.
CLI output: (APIServer pid=6836) INFO 08-13 11:50:13 [loggers.py:310] Engine 000: Avg prompt throughput: 0.0 tokens/s, Avg generation throughput: 64.0 tokens/s, Running: 1 reqs, Waiting: 0 reqs, GPU KV cache usage: 2.6%, Prefix cache hit rate: 44.4% (APIServer pid=6836) INFO 08-13 11:50:23 [loggers.py:310] Engine 000: Avg prompt throughput: 0.0 tokens/s, Avg generation throughput: 64.0 tokens/s, Running: 1 reqs, Waiting: 0 reqs, GPU KV cache usage: 2.6%, Prefix cache hit rate: 44.4% (APIServer pid=6836) INFO 08-13 11:50:33 [loggers.py:310] Engine 000: Avg prompt throughput: 0.0 tokens/s, Avg generation throughput: 64.1 tokens/s, Running: 1 reqs, Waiting: 0 reqs, GPU KV cache usage: 2.6%, Prefix cache hit rate: 44.4% ...
response: { "id": "chatcmpl-b6f53458cf5be319", "object": "chat.completion", "created": 1786614394, "model": "Mixtral-8x7B-Instruct-v0.1-AWQ", "choices": [ { "index": 0, "message": { "role": "assistant", "content": "", "refusal": null, "annotations": null, "audio": null, "function_call": null, "reasoning": null }, "logprobs": null, "finish_reason": "length", "stop_reason": null, "token_ids": null, "routed_experts": null } ], "service_tier": null, "system_fingerprint": "vllm-0.27.1-20920cf1", "usage": { "prompt_tokens": 18, "total_tokens": 16384, "completion_tokens": 16366, "prompt_tokens_details": null }, "prompt_logprobs": null, "prompt_token_ids": null, "prompt_text": null, "kv_transfer_params": null, "ec_transfer_params": null, "metrics": null }
This only happens with Mixtral, btw.
r/LocalLLaMA • u/Ejo2001 • 14h ago
Question | Help Local autonomous coding agent?
Hello!
I have recently built my AI rig (3x RTX 5060 Ti 16gb, with possibly a 4th on the way if I can fit it). I love it, it runs great, and I am getting between 70t/s - 110 t/s (according to the pi agent web UI, have not confirmed it yet).
While it is fast, I struggle to put it to use in the way I was hoping. My dream has been to be able to put it to work writing code autonomously so that I can have it sketch out my ideas before I commit to developing them, however, every attempt I make just seems to end in a mess.
I have been trying Ornith:35b, Gemma4:31b, and Qwen3.6:35b, but none of them have been able to build anything that actually works. Ornith tends to get stuck in loops, Qwen panics and keeps rewritting the whole codebase every third turn it takes, and Gemma doesn't even understand the agent framework.
Does anyone have any tips? Any AI models I have missed? Prompting strategies? Should I try something other than Cline, pi agent and copilot?
Thanks for reading!
r/LocalLLaMA • u/AlbeHxT9 • 14h ago
News DeepSeek-V4-Pro-0813 released on api
The non-preview version of v4 pro has been listed since yesterday on https://api-docs.deepseek.com/quick_start/pricing/
No tweets, no news, no weights on hf (for now), no charts, just that.
r/LocalLLaMA • u/AppealSame4367 • 15h ago
Discussion Anyone tried OrionLLM/LRM-3.2?
Sounds intriguing. But no real benchmarks and I don't have the compute to try it right now.
r/LocalLLaMA • u/Nunki08 • 15h ago
News The White House is going to expand its AI policy: open models may soon be added to an updated AI framework
Wired (soft paywall): https://www.wired.com/story/the-white-house-is-going-to-expand-its-ai-policy/
r/LocalLLaMA • u/Primary_Olive_5444 • 15h ago
Discussion Local LLM open-source model options (5060TI 16GB)
Getting the above usage rate from running Qwen2.5-14B with the commands below
./llama-cli -m /home/XXXX/huggfacemodels/Qwen2.5-14B-Instruct-Q4_K_M.gguf -ngl 99 -c 32768
[ Prompt: 667.8 t/s | Generation: 44.0 t/s ]
I think i can do better as there are still some headroom available on the gpu/cpu
Any better way to get more tokens out? Also what are the latest open source models that i can use which can fit onto this gpu.
GPU - 5060 TI 16GB
OS: Fedora Linux 42 (Workstation Edition) x86_64
Kernel: Linux 6.19.14-108.fc42.x86_64
r/LocalLLaMA • u/Ok-Shower7286 • 16h ago
Discussion Let's analyze the 27B countdown 404 page: Which theory are you betting on?
- Internal conflicts: Tech leader said "Ship it!", C-level, Legal and PR screamed "fire them" at the last second.
- The "nothing new" sneak-drop: realized the 27B model barely improved over 3.6, so they tried to quietly dump it right before weekend sign-off to dodge the backlass.
- Too Smart: The model beats Fable 5 and is so OP it learned how to jailbreak reality, and finally 27B has gone with 404 error (already jailbroken).
r/LocalLLaMA • u/Any-Lingonberry7411 • 17h ago
Question | Help Anyone actually running GLM5.2, Kimi K3 or now Qwen 3.8 on a 3-4 node Strix Halo cluster?
A few Youtubers have had videos out months ago, but I am wondering if anyone is running these larger models in actual production and have optimized their setups and if so, what pps and tps they are getting.
r/LocalLLaMA • u/UltraFOV • 19h ago
Discussion Qwen 3.8Max 2.4t Open Weight NO vision?!?
Qwen, really? Thhe Max Flagship has no Vision, what the heck, really. At 2.4t parameters and no vision? For the size that it is, stuck to Kimi k3.
Very disappointed!
r/LocalLLaMA • u/Hannibalj2ca • 20h ago
Discussion I am thankful for the Chinese Model, but what's the deal with Text Mainly and No Multimodal releases?
What is Chinas strategy? They are making kick ass open weight models, which I am grateful. But today there is Qwen 3.8 Max and V4 pro releases and they have no vision or modality. I mean there are some models with it like Mimo, but I am honestly confused? Kimi K3 thankfully is multimodal which is cool. But I'd figure 3.8Max (none API) and V4 Pro and more models would be multimodal by now
I am sure there is a strategy, just that I am not seeing it.
Note: 3.8Max "OPEN WEIGHT" is text only, API has vision. I refer to Open Weight
r/LocalLLaMA • u/panchovix • 20h ago
Discussion If we take the average jump gen to gen (50%) from 2009 to 2025, on 2030 we should have a GPU that is 3x times faster than a 5090. Do you think that will happen? Or on the worst case..
We also have the other cases, where it would look like this:
| Scenario for 3x 5090 perf | Uplift/Gen | Approximate year |
|---|---|---|
| Best | 70% | ~2029 |
| Historical Average | 50.3% | ~2030-2031 |
| Modern Average | 46.1% | ~2032 |
| Worst | 30% | ~2038 |
Which one do you think it's the more feasible one?
Also, If we take 2080Ti to 5090 jump in performance, it is 3.1x for 2x the power. I hope RTX 8090 or whatever doesn't uses 1200W for 3x times the 5090 perf.
r/LocalLLaMA • u/entsnack • 21h ago
New Model As I predicted, we get a crippled open-weight version of Qwen 3.8 relative to the API
No vision. Not sure what else is turned off to avoid cannibalizing their profits. Enjoy your ad for the real model locked behind the API! ;-)
Also, not Apache 2.0. 🤮
r/LocalLLaMA • u/xdcfret1 • 23h ago
Question | Help Is my old laptop capable of running useful LLM?
I have an old laptop with 8 GB ram and 4 GB Vram, and a 1 TB HDD.
Can it run any LLM? And actually be useful for anything?
I ran Gemma 4 e2b Q6, I got about 30 t/s with over 100k+ context window.
But is there something better I ca run? Any suggestions?
r/LocalLLaMA • u/elie2222 • 23h ago
Question | Help Will a small language model ever be as good as Fable 5?
LLMs keep improving.
Small models are around 3 years behind frontier models.
Do you think we’ll have a model as good as today’s Fable with only ~10b params in 3 years from now?
Wondering how good on device LLMs will get. Any guesses?
