What is PCIe?
PCIe (Peripheral Component Interconnect Express) is the bus, the shared high-speed connection, that you plug expansion cards into. The most important one for local AI is a discrete graphics card: it sits in a PCIe slot and talks to the processor and system memory over that link. The link is fast, but it is still a link, and anything that travels across it takes a measurable amount of time that the GPU is not spending on actual computing.
That cost is usually invisible until your work involves a lot of back-and-forth. When a model and its data do not fit in the card’s own memory and have to be shuttled in and out over PCIe, the bus becomes the thing you are waiting on rather than the processor.
Why does it barely matter on a DGX Spark?
A DGX Spark does not put the GPU on the far end of a PCIe link. The graphics processor and the main processor share one pool of memory on the same package, so the model’s data is already where the GPU can reach it. There is no discrete card to feed across a bus. That is the whole point of a unified-memory design: it removes the hop that, on a desktop, you spend effort avoiding. The trade is that the memory is fixed at purchase, not a card you can swap out later for a bigger one.