Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Matrix Multiplication on GPU

Andy LoFollowTowards Data Science--ListenShareThis blog came from a sudden realisation of how little I knew about how Matrix Multiplication works on the GPU. Having done so many ML projects, I feel like I ought to understand how the most important operation in ML works: What is this “Tensor Core” thing? Why does everyone say “data movement is the bottleneck”? How fast can GPUs actually go?To answer these questions, I decided that I must go out of my PyTorch bubble and venture into the abyss of CUDA. I wrote this blog to document all that I have learnt, and hopefully anyone reading this wouldn’t have to go through the pain of digging through CUDA docs/code as I did.If there is anything that I’ve learnt in this journey, it is concurrent matrix multiplication is HARD. Efficient matrix multiplication heavily depends on the specific hardware you are using and the problem size you are trying to solve. There is no one-size-fits-all solution.Enough nagging, let’s dig in!Let’s remind ourselves how (NVIDIA) GPUs work. A GPU achieves parallelism by running many threads. Each thread is executed on a single CUDA core, though at a given time, only a subset of the threads are active so there can be many more threads than CUDA cores available. Each thread, no matter it is active or not, has its own set of registers.A group of 32 threads is known as a Warp. All threads in a warp must execute together (or be inactive together). In most cases, there are a lot more inactive warps than active warps, and the warp scheduler is responsible for choosing which warps to execute at a given time. This allows the GPU to hide the latency of memory accesses by scheduling other warps to execute while a warp is waiting for data.A group of warps is known as a threadblock. All warps in a threadblock are executed in the same Streaming Multiprocessor (SM). Each threadblock has its own shared memory that can be accessed by all threads in the threadblock.Note: Newer architecturesFrom Volta architecture onwards, each thread also has its own program counter and call stack etc. This means that each thread in a warp can execute different instructions at the same time.The Volta architecture also introduced Tensor Cores that are specialised to solve matrix multiplications of specific sizes. Each active warp have access to one Tensor Core.In the newest Hopper architecture, there is a concept of threadblock clusters that represents a group of threadblocks. It gives the user more fine-grained control over the scheduling of threadblocks and allows the shared memory of one threadblock to be access by other threadblocks in the same cluster.Suppose we want to compute:We say that the problem size is (M, N, K) in this case. To parallelise this operation, we can split A and B into smaller matrices, matrix multiply them individually, and concatenate the results to form C.Specifically, we can partition A row-wise (i.e., M into chunks of size M’) and B column-wise (i.e., N into chunks of size N’) to give:We can see that each sub-matrix in C are independent of each other, so we can easily parallelise the computation of each sub-matrix.In practice, K might be too large to directly load into memory and compute on. Instead, a typical implementation will also split K into chunks of size K’, iterate over each chunk, and accumulate (by summing) over the partial results. This is known as serial-K reduction. (As opposed to parallel-K reduction, see section below). Mathematically, this looks like:Note: PaddingAt any point where the problem size is not divisible by the partition size, we need to add padding. This is typically done implicitly when we load the partitioned inputs (𝐴ᵢ,ₖ and 𝐵ₖ,ⱼ) into lower-level memory where we ensure the loaded partition (of size M’×K’ for 𝐴ᵢ,ₖ and K’×N’ for 𝐵ₖ,ⱼ) is always “full” by adding zeros. Special care needs to be taken when writing the results back to global memory to avoid out-of-bounds errors.On a high level, three nested partitions happen to parallelise matrix multiplication on the GPU:1. The first partition happens on the threadblock level. Each threadblock is responsible for computing Cᵢ,ⱼ = Aᵢ Bⱼ.2. The second partition happens on the warp level. The threadblock-level problem Cᵢ,ⱼ is further partitioned such that each warp is responsible for computing Cᵢ,ⱼ⁽ᵐⁿ⁾ = Aᵢ⁽ᵐ⁾ Bⱼ⁽ⁿ⁾.3. The third partition happens on the instruction level. Some instructions expect inputs of particular sizes. For example, second-generation Tensor Cores operate on problems of size (16, 8, 8) for fp16, whereas a direct implementation on CUDA cores by scalar multiplication would simply operate on size (1, 1, 1). The warp-level problem is thus even further partitioned such that each chunk has a suitable size for the instruction: Cᵢ,ⱼ⁽ᵐⁿ⁾⁽ᵃᵇ⁾ = Aᵢ⁽ᵐ⁾⁽ᵃ⁾ Bⱼ⁽ⁿ⁾⁽ᵇ⁾.There’s a good reason why we need three partition levels, as we will see in the next section.Matrix multiplication can easily become memory-bound if we naively re-fetch data from global memory to registers every time we perform a computation. The key observation is that many of the sub-inputs Aᵢ and Bⱼ are reused across different sub-matrix multiplications. For example, Aᵢ is required for Cᵢ,₁ , Cᵢ,₂ , ... and Bⱼ is required for C₁,ⱼ , C₂,ⱼ , … . We can get the best throughput if we can minimise redundant data movement and reuse the loaded data as much as possible.In CUDA, there are three types of user-accessible memory:Here’s a high-level view of how each memory type is utilised:On the threadblock level, the problem is partitioned into sub-problems of size (M’, N’, K’). Thus, each threadblock is responsible for computing a fragment of C, denoted as:Redundant data movement is minimised by loading the sub-inputs Aᵢ,ₖ and Bₖ,ⱼ into shared memory. When we are done with computing Aᵢ,ₖ Bₖ,ⱼ, the next chunk (Aᵢ,ₖ₊₁ and Bₖ₊₁,ⱼ) will be loaded.On the warp level, the sub-problem is further partitioned into sub-sub-problems of size (M’’, N’’, K’’). Thus, each warp is responsible for computing a fragment of Cᵢ,ⱼ, denoted as Cᵢ,ⱼ⁽ᵐ ⁿ⁾:Redundant data movement is minimised by loading the sub-sub-inputs Aᵢ,ₖ⁽ᵐ ˡ⁾ and Bₖ,ⱼ⁽ˡ ⁿ⁾ into registers. Any accesses to Aᵢ,ₖ⁽ᵐ ˡ⁾ and Bₖ,ⱼ⁽ˡ ⁿ⁾ within a warp will then be served by the fast registers.Note: Distributing data across registersIt is worth noting that registers are thread-level only. This means that inputs in a register cannot be accessed by other threads in a warp. The exact way of how Aᵢ,ₖ⁽ᵐ ˡ⁾ and Bₖ,ⱼ⁽ˡ ⁿ⁾ are partitioned into the registers of each thread depends on the specific instruction used. The NVIDIA docs on Warp Level Matrix Multiply-Accumulate Instructions gives a detailed description for each instruction.To actually perform the matrix multiplication, we use the Tensor Cores on the GPU. My GPU (RTX 2060) has the second generation Tensor Cores, which are specialised to solve fp16 problems of size (M’’’, N’’’, K’’’) = (16, 8, 8). Thus, we even further partition Cᵢ,ⱼ⁽ᵐ ⁿ⁾ to fit the size expected by the instruction:Here, all the inputs are already in the registers and thus the data movement overhead is minimal.Note: Tensor CoresTensor Core operations are warp-level instructions, meaning that all the threads in a warp need to execute the Tensor Core instruction at the same time, collaboratively preparing the data to be consumed by one Tensor Core.So, given that we want to minimise data movement, we should just choose a partition size as large as possible to utilise all of the shared memory and registers, right? Well, not quite.Asymptotically, as the problem size increases, yes, we do want to use as much shared memory and registers as possible. However, for small problem sizes, we might run into two problems:A typical implementation might use a partition size of (M’, N’, K’) = (128, 256, 32).In general, having a large warp partition size means there will be less redundant data movement, but at the cost of having fewer warps. Having too few warps means that we will not be able to hide the latency of memory accesses (because we might run out of other warps to schedule while the current warp is waiting for data).A typical implementation might use a partition size of (M’’, N’’, K’’) = (64, 64, 32).This is completely determined by what instructions your GPU supports. For my RTX 2060, the ptx instruction for fp16 Tensor Core matrix multiplication (with fp16 accumulation) is mma.sync.aligned.m16n8k8.row.col.f16.f16.f16.f16, which expects inputs of size (16, 8, 8).The above techniques can get us close to the theoretical peak performance of the GPU when the problem size is large. However, for smaller problem sizes, they are not as efficient. There are two common techniques to further improve the performance of matrix multiplication: parallel-K reduction and software pipelining.In cases where M and N are small, we might only have a few threadblocks. For example, if (M’, N’) = (128, 256) and the original problem size has M ≤ 128 and N ≤ 256, we will only have one threadblock, and so we are only utilising a fraction of the GPU’s compute power! (For example, my RTX 2060 has 30 SMs, so to maximise utilisation we want at least 30 threadblocks.)In cases where K is large (even though M and N are small), we can leverage more parallelism by doing parallel-K reduction. Recall that in serial-K reduction, each threadblock iterates over the following sum:and accumulates the intermediate results into Cᵢ,ⱼ. In parallel-K reduction, we instead assign each threadblock to only compute one element of the sum (i.e. Aᵢ,ₖ Bₖ,ⱼ). This allows us to increase the number of threadblocks by a factor of K/K’, thus utilising more SMs.The caveat is that now, we need to allocate more memory to store the results from each threadblock, and invoke a second kernel to perform a final reduction over the partial results to get Cᵢ,ⱼ.Normally, CUDA hides the latency of memory accesses by scheduling other warps to execute while a warp is waiting for data. This requires us to have enough warps to mask the latency.However, the number of warps is typically relatively small when doing GEMM. This is because the number of warps is limited by “The number of available registers per threadblock divided by the number of registers required per warp”. For matrix multiplication, we use a lot of registers per warp to maximise data reuse. As a result, we might not have enough warps to mask the latency.“The accumulator elements typically occupy at least half a thread’s total register budget”. — CUTLASS DocsTo mitigate this effect, we can use software pipelining. In essence, we can (manually) pre-load the inputs for the next iteration of the loop asynchronously using special instructions. While the inputs are being loaded, we can continue to compute on the current iteration. It is summarised by the following diagram:This is made possible by the fact that the GPU is like any modern CPU: it can pipeline memory accesses and arithmetic operations as long as there is no data dependency between them. This is known as instruction-level parallelism.If you want to see how all these concepts come together in a real implementation, check out my implementation of training MNIST from scratch with CUDA. There, I trained a multi-layer perceptron on MNIST using CUDA, achieving 6x speedup over optimised PyTorch for hidden size of 128:github.com1. CUTLASS docs2. CUDA docs3. CUTLASS examplesNo rights reserved by the author.----Towards Data ScienceComputer Science student at the University of CambridgeAndy LoinTowards Data Science--2Damian GilinTowards Data Science--24Khouloud El AlamiinTowards Data Science--20Shawhin TalebiinTowards Data Science--8Omkar Manohar Dalvi--Soumen Sardar--Nawin Raj Kumar Sinkgxperience--Abhishek Kumar Goyal--1SAHIL GOYAL--Vatsalya Krishan Maurya--HelpStatusWritersBlogCareersPrivacyTermsAboutText to speechTeams



This post first appeared on VedVyas Articles, please read the originial post: here

Share the post

Matrix Multiplication on GPU

×

Subscribe to Vedvyas Articles

Get updates delivered right to your inbox!

Thank you for your subscription

×