Expanded Loops | Ugly and Efficient! 馃懝 | Part 2
Moving forward with optimizing and uglifying for loops, the next technique I want to write about here is loop tiling or loop blocking. If you鈥檙e coding a program that heavily relies on for loops, this method will greatly help improve the performance of the program. As the name suggests, this technique divides large loops into smaller tiles or blocks to better fit into the processor cache. The problem with large loops and heavy code blocks is that they take up much of our precious CPU鈥檚 cache space, which is crucial for processing tasks....