|
| ▲ | vidarh 2 hours ago | parent | next [-] |
| Kimi 2.6 is nowhere near even Sonnet in overall robustness. It can get close when everything goes perfectly. I have about 1KLOC of harness code written by Kimi to work around quirks in Kimi not needed for any other model I've tested, such as infinite toolcall loops and other weirdness. You can do quite a bit with it and never run into those quirks, or you might hit it every request. It is very sensitive to "confusing" things about it's environment in a way Sonnet and Opus are not. Still great value, but they have some way to go. |
|
| ▲ | ryandrake 3 hours ago | parent | prev | next [-] |
| Would "lots of gpus" even help for huge models? Maybe this is exposing my lack of knowledge but don't you need to keep the whole model and context in a single GPU's VRAM? My understanding is that multiple GPUs help with scaling (can handle N X inference requests simultaneously) but it doesn't help with using large models. If that were the case, I could jam another GPU in my box and double the size of model I can serve. |
| |
| ▲ | Kirby64 3 hours ago | parent | next [-] | | > Would "lots of gpus" even help for huge models? Maybe this is exposing my lack of knowledge but don't you need to keep the whole model and context in a single GPU's VRAM? How do you think the large providers do inference? No single GPU has 1TB plus of memory on board. It’s a cluster of a bunch of gpus. | |
| ▲ | 2ndorderthought 3 hours ago | parent | prev [-] | | 1t model instances(opus, gpt,etc) are not running on a single GPU. The catch is how the cards communicate and how the model is broken up. There's a bit that goes into it but the answer is yes the more gpus the bigger the model you can run. | | |
| ▲ | ryandrake 2 hours ago | parent [-] | | Really cool. I'm very much still learning about this stuff. Sounds like this inter-GPU communication is a feature of special hardware (not consumer GPUs). | | |
| ▲ | punchmesan an hour ago | parent | next [-] | | Ever hear of SLi (now called NVLink)? It's a GPU interconnect that's been available for a good long while now on high-end Nvidia GPU's. I believe AMD's implementation is called Crossfire. GPU interconnect speeds are a big bottleneck today for GPU's in AI applications. Data can't move between them fast enough. | |
| ▲ | 2ndorderthought 2 hours ago | parent | prev | next [-] | | Not really, there's various ways it can be done but even I think the old 1080tis could do it. Keep reading about it, my interest is in small models on a single GPU though so I don't fuss over those details. | |
| ▲ | Tostino an hour ago | parent | prev [-] | | Most consumer cards had faster interlinks included on them until one generations ago when they decided they wanted to differentiate their data center hardware more, And remove the inner links that have been on the cards in various forms for 20 plus years. |
|
|
|
|
| ▲ | Jabrov 3 hours ago | parent | prev | next [-] |
| Yes multiple GPUs absolutely help with inference even for a single model instance. Some models are simply too big to fit on the largest available GPU. Check out tensor parallelism |
|
| ▲ | ffsm8 3 hours ago | parent | prev [-] |
| Please don't oversell them. Eg Kimi k2.6 has a maximum context size of 270k, that's a quarter of opus. The model is fine, Ive switched to it entirely for a personal project, but it's not opus. And no, you're not running then locally unless you're a millionaire. You still need hundreds of GB (500+++) of VRAM on your graphics card - that's not at a level of consumer electronics. Sure you can run the quantized models, but then you're at Haiku performance. |
| |
| ▲ | 2ndorderthought 3 hours ago | parent [-] | | Qwen 3.6 runs in a single GPU. But I mostly agree with you except, just because a model has a given context doesn't mean it's all available or entirely reliable. |
|