What happens when a GPU reads memory
85 points by ibobev 7 hours ago | 15 comments

xyzsparetimexyz 3 hours ago
> Little of the detail of this path is documented by NVIDIA, at least not to the level that we’d like, so we’ll determine it by running timing experiments on the hardware itself

Or you could just use the AMD isa.

reply
yipinwong 5 hours ago
This is a type of article that is HN worthy and came to HN for initially because I don't even understand a third of content there. Giving me inspiration to dive deeper.

SEriously, I don't understand it (yet) lol.

reply
nazgulsenpai 4 hours ago
That's the best feeling -- idly clicking through looking for that one rabbit hole to fall down then stumbling upon a gem like this. I noticed this the first time on copetti.org articles about game console architectures: know nothing, look every jargon or acronym up as you read along, end up with 42 tabs and a basic high-level understanding of the topic by the end.
reply
empiricus 6 hours ago
For a long time, the chip manufacturers had an inclination to simplify the hardware and rely on the software adapting and optimizing. But for decades this bid failed. Now we have the unrelenting AI capable of finetuning kernels relatively quickly. Maybe simpler hw will work this time? Note: not sure if TPU/NPU is not only simple but also too limited.
reply
KellyCriterion 5 hours ago
VERY good article, reminds me on:

"what every programmer should know about memory" https://github.com/Ty-Chen/Reading-List/blob/master/What%20e...

reply
WalterGR 3 hours ago
That’s somebody’s highlighted copy of the PDF.

Here’s a clean version: https://people.freebsd.org/~lstewart/articles/cpumemory.pdf

reply
snigacookie 5 hours ago
Can someone help me understand why I spent 5 minutes reading something that I still don't understand?

Link for the ELI5 version?

reply
wmf 2 hours ago
There isn't really an ELI5 version of computer architecture but you could start with the book Inside the Machine by Jon Stokes. Then you can get into SIMT.
reply
mathisfun123 4 hours ago
YMMV; not all GPUs work exactly like this
reply
brcmthrowaway 5 hours ago
Ctrl+F PCIe BAR.. nothing.
reply
porridgeraisin 5 hours ago
This is talking about HBM/GDDR
reply
KK7NIL 5 hours ago
a.k.a. VRAM
reply
brcmthrowaway 5 hours ago
Something needs to be transferred from sysmem right?
reply
wmf 4 hours ago
That's probably PCIe DMA initiated by the GPU so I don't think BAR is used.
reply
porridgeraisin 2 hours ago
Pcie dma uses BAR registers setup by cpu. It will contain information about the physical memory address for one. On newer systems, there is NVLINK C2C which is more tightly integrated and less general.

Regardless, my point was the the article is about vram.

However, there is one situation when vram access itself uses the bar, to be fair. When you do P2P dma, code (kernel, either the inbuilt version or the one in the nvidia driver) running on the cpu sets up the DMA engines's GART to contain the BAR1s of the other.

reply