this post was submitted on 19 Jul 2026
272 points (89.1% liked)

Technology

86485 readers
3267 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Buddahriffic@lemmy.world 4 points 1 day ago

Not sure how well that without work even if you could bridge them properly to share their vram, as the latency from the other gpu will be pretty high compared to the local vram. Frame times won't be that great is my prediction. It works ok for LLMs because they aren't a realtime compute task like gaming graphics is. If an LLM takes an extra 0.12s to compute its result, you don't notice, but if a gpu misses a frame deadline by 0.12s, that's a stutter that represents less than 10 fps.

I believe that's why earlier attempts at dual gpu systems mostly fizzled out (plus cost concerns). You can get some pure acceleration if you can fit the entire working memory onto both GPUs' vram (so your total vram is effectively min( GPUA_VRAM, GPUB_VRAM ) rather than GPUA_VRAM + GPUB_VRAM, though that also requires all pixels to be independent of anything calculated on the other GPU, other than maybe post processing effects that could be handled on whichever GPU is handling the display.

That's not to say that you can't get extra performance out of multi-gpu setups that don't just mirror their RAM, but it's more complicated than "sum of the capabilities of each GPU".