In case you are interested: Requirement Minimum Processor AMD Ryzen AI 300-series
It reads as optional for NPU support. But seems to have that as minimum on another page.
GAIA – Open-source framework for building AI agents that run on local hardware
31–40 of 43 posts
Re: GAIA – Open-source framework for building AI agents that run on local hardware
#32Earlier quoted context omitted.
I am running q 4xgpu rig at home (similar to a mining rig) doing everything from llms to content creation. I have learned a lot. Having an AI rig today is much like having an early PC in the 80s. You dont appeciate the possible uses until you have it in your hands. All you need is a used GPU slapped onto any disused ddr4 mobo. New 5060s, the 16gb models, can do basically everything now.
Can you specify a bit, what gpus and how do you wire them "together"? Nvlink?
Re: GAIA – Open-source framework for building AI agents that run on local hardware
#33Nvidia went through a lot of effort to make CUDA operational on their entire lineup, and they did it before deep learning even took off. You do this thing not because you expect consumers with 5 year old hardware to provide meaningful utilization but as a demo ("let me grab my old gaming machine and do some supercomputing real quick") and a signal that you intend to stay the course. AMD management hasn't realized thi…
You got it right I think. I’m sitting with two “AI Ready Radeon AI Pro 9700 workstation cards, which are RDNA4 not CDNA. My experience is that my cards are not a priority. Individual engineers at AMD may care, the company doesn’t. I have been trying since February to get ahold of anyone responsible for shipping tuned Tensile gfx1201 kernels in rocm-libs, which is used by Ollama.its been three weeks since I raised eno…
I can't count how many times over the last 30 years I've had AMD drivers crash the OS (Linux and Windows). Nvidia have been mostly rock solid.
The thing is, the die isn't much use without a stable driver (and AI stack).
Re: GAIA – Open-source framework for building AI agents that run on local hardware
#34Re: GAIA – Open-source framework for building AI agents that run on local hardware
#35Re: GAIA – Open-source framework for building AI agents that run on local hardware
#36Earlier quoted context omitted.
Can you specify a bit, what gpus and how do you wire them "together"? Nvlink?
A couple 5060s and a couple 3060s. They are wired via PCI risers to an older mono with an amd cpu. (I wanted to avoid long 3-fan cards.) It looks like a mining rig, but with thicker pci risers. Many llm tools easily leverage multiple GPUs. Sucks 800w at full load, idles below 50w.
Re: GAIA – Open-source framework for building AI agents that run on local hardware
#37Nvidia went through a lot of effort to make CUDA operational on their entire lineup, and they did it before deep learning even took off. You do this thing not because you expect consumers with 5 year old hardware to provide meaningful utilization but as a demo ("let me grab my old gaming machine and do some supercomputing real quick") and a signal that you intend to stay the course. AMD management hasn't realized thi…
You got it right I think. I’m sitting with two “AI Ready Radeon AI Pro 9700 workstation cards, which are RDNA4 not CDNA. My experience is that my cards are not a priority. Individual engineers at AMD may care, the company doesn’t. I have been trying since February to get ahold of anyone responsible for shipping tuned Tensile gfx1201 kernels in rocm-libs, which is used by Ollama.its been three weeks since I raised eno…
Re: GAIA – Open-source framework for building AI agents that run on local hardware
#38Earlier quoted context omitted.
Can you specify a bit, what gpus and how do you wire them "together"? Nvlink?
A couple 5060s and a couple 3060s. They are wired via PCI risers to an older mono with an amd cpu. (I wanted to avoid long 3-fan cards.) It looks like a mining rig, but with thicker pci risers. Many llm tools easily leverage multiple GPUs. Sucks 800w at full load, idles below 50w.
Re: GAIA – Open-source framework for building AI agents that run on local hardware
#39Earlier quoted context omitted.
A couple 5060s and a couple 3060s. They are wired via PCI risers to an older mono with an amd cpu. (I wanted to avoid long 3-fan cards.) It looks like a mining rig, but with thicker pci risers. Many llm tools easily leverage multiple GPUs. Sucks 800w at full load, idles below 50w.
Would you please share a link to your chassis and risers? I have the PCIE lanes, but not yet encountered a reasonable way to have more than 3 GPUs directly attached to a host, both from physical space and power requirements. External PCIe switch cases are not reasonably available to mortals :/
Re: GAIA – Open-source framework for building AI agents that run on local hardware
#40Earlier quoted context omitted.
I am running q 4xgpu rig at home (similar to a mining rig) doing everything from llms to content creation. I have learned a lot. Having an AI rig today is much like having an early PC in the 80s. You dont appeciate the possible uses until you have it in your hands. All you need is a used GPU slapped onto any disused ddr4 mobo. New 5060s, the 16gb models, can do basically everything now.
Can you specify a bit, what gpus and how do you wire them "together"? Nvlink?
With multiple cards in normal PCI express slots, LLM layers are split across cards.
When you run inference, it runs on one card then the other card. You can repeat this for as many cards as you want.
You only copy the activations between the cards which ~10 MB/sec at runtime so PCIe width or generation is irrelevant. Even PCIe 1.0 x1 would be sufficient.
There are other software optimisations (row split, tensor parallel) which require fast interlinks like NVLink but you can get a long way without any of that.