The register-spill-to-local-memory penalty modeled here is exactly what `nvcc --ptxas-options=-v` reports as register pressure, the first metric CUDA kernel authors check when a kernel underperforms. Shared-memory staging to hide global memory latency is the core trick behind cuBLAS and cuDNN's fastest matrix-multiply kernels.