1 / 34

The Importance of Being Local

The Importance of Being Local. More Data Than Cache. Let’s say that you have 1000 times more data than cache. Then won’t most of your data be outside the cache? YES! Okay, so how does cache help?. Improving Your Cache Hit Rate.

elke
Télécharger la présentation

The Importance of Being Local

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. The Importance of Being Local

  2. More Data Than Cache • Let’s say that you have 1000 times more data than cache. Then won’t most of your data be outside the cache? • YES! • Okay, so how does cache help?

  3. Improving Your Cache Hit Rate • Many scientific codes use a lot more data than can fit in cache all at once. • Therefore, you need to ensure a high cache hit rate even though you’ve got much more data than cache. • So, how can you improve your cache hit rate? • Use the same solution as in Real Estate: (Location, Location, Location!)

  4. Data Locality • Data locality is the principle that, if you use data in a particular memory address, then very soon you’ll use either the same address or a nearby address. • Temporal locality: if you’re using address A now, then you’ll probably soon use address A again. • Spatial locality: if you’re using address A now, then you’ll probably soon use addresses between A-k and A+k, where k is small. • Note that this principle works well for sufficiently small values of “soon.” • Cache is designed to exploit locality, which is why a cache miss causes a whole line to be loaded.

  5. Data Locality Is Empirical: C • Data locality has been observed empirically in many, many programs. void ordered_fill (float* array, intarray_length) { int index; for (index = 0; index < array_length; index++) { array[index] = index; } }

  6. No Locality Example: C • In principle, you could write a program that exhibited absolutely no data locality at all: void random_fill (float* array, int* random_permutation_index, intarray_length) { int index; for (index = 0; index < array_length; index++) { array[random_permutation_index[index]] = index; } }

  7. Better Permuted vs. Ordered In a simple array fill, locality provides a factor of 8 to 20 speedup over a randomly ordered fill on a Pentium4.

  8. Exploiting Data Locality • If you know that your code is capable of operating with a decent amount of data locality, then you can get speedup by focusing your energy on improving the locality of the code’s behavior. • This will substantially increase your cache reuse.

  9. CS 491 – Parallel and Distributed Computing

  10. A Sample Application • Matrix-Matrix Multiply • Let A, B and C be matrices of sizes • nr nc, nr nk and nknc, respectively: The definition ofA = B •C is forr {1, nr}, c {1, nc}.

  11. Matrix Multiply w/Initialization void matrix_matrix_mult_by_init ( float** dst, float** src1, float** src2, int nr, intnc, intnq) { int r, c, q; for (r = 0; r < nr; r++) { for (c = 0; c < nc; c++) { dst[r][c] = 0.0; for (q = 0; q < nq; q++) { dst[r][c] = dst[r][c] + src1[r][q] * src2[q][c]; } /* for q */ } /* for c */ } /* for r */ }

  12. Matrix Multiply Behavior If the matrix is big, then each sweep of a row will clobber nearby values in cache.

  13. Better Performance of Matrix Multiply

  14. Tiling

  15. Tiling • Tile: a small rectangular subdomain of a problem domain. Sometimes called a block or a chunk. • Tiling: breaking the domain into tiles. • Tiling strategy: operate on each tile to completion, then move to the next tile. • Tile size can be set at runtime, according to what’s best for the machine that you’re running on.

  16. Tiling Code: C void matrix_matrix_mult_by_tiling ( float** dst, float** src1, float** src2, int nr, intnc, intnq, intrtilesize, intctilesize, intqtilesize) { intrstart, rend, cstart, cend, qstart, qend; for (rstart = 0; rstart < nr; rstart += rtilesize) { rend = rstart + rtilesize – 1; if (rend >= nr) rend = nr - 1; for (cstart = 0; cstart < nc; cstart += ctilesize) { cend = cstart + ctilesize – 1; if (cend >= nc) cend = nc - 1; for (qstart = 0; qstart < nq; qstart += qtilesize) { qend = qstart + qtilesize – 1; if (qend >= nq) qend = nq - 1; matrix_matrix_mult_tile(dst, src1, src2, nr, nc, nq, rstart, rend, cstart, cend, qstart, qend); } /* for qstart */ } /* for cstart */ } /* for rstart */ }

  17. Multiplying Within a Tile: C void matrix_matrix_mult_tile ( float** dst, float** src1, float** src2, int nr, intnc, intnq, intrstart, int rend, intcstart, intcend, intqstart, intqend) { int r, c, q; for (r = rstart; r <= rend; r++) { for (c = cstart; c <= cend; c++) { if (qstart == 0) dst[r][c] = 0.0; for (q = qstart; q <= qend; q++) { dst[r][c] = dst[r][c] + src1[r][q] * src2[q][c]; } /* for q */ } /* for c */ } /* for r */ }

  18. Better Performance with Tiling

  19. The Advantages of Tiling • It allows your code to exploit data locality better, to get much more cache reuse: your code runs faster! • It’s a relatively modest amount of extra coding (typically a few wrapper functions and some changes to loop bounds). • If you don’t need tiling – because of the hardware, the compiler or the problem size – then you can turn it off by simply setting the tile size equal to the problem size.

  20. Will Tiling Always Work? • Tiling WON’T always work. Why? • Well, tiling works well when: • the order in which calculations occur doesn’t matter much, AND • there are lots and lots of calculations to do for each memory movement. • If either condition is absent, then tiling won’t help.

  21. Parallelism

  22. Parallelism Parallelism means doing multiple things at the same time: you can get more work done in the same time. Less fish … More fish!

  23. The Jigsaw Puzzle Analogy

  24. Serial Computing Suppose you want to do a jigsaw puzzle that has, say, a thousand pieces. We can imagine that it’ll take you a certain amount of time. Let’s say that you can put the puzzle together in an hour.

  25. Shared Memory Parallelism If Scott sits across the table from you, then he can work on his half of the puzzle and you can work on yours. Once in a while, you’ll both reach into the pile of pieces at the same time (you’ll contend for the same resource), which will cause a little bit of slowdown. And from time to time you’ll have to work together (communicate) at the interface between his half and yours. The speedup will be nearly 2-to-1: y’all might take 35 minutes instead of 30.

  26. The More the Merrier? Now let’s put Paul and Charlie on the other two sides of the table. Each of you can work on a part of the puzzle, but there’ll be a lot more contention for the shared resource (the pile of puzzle pieces) and a lot more communication at the interfaces. So y’all will get noticeably less than a 4-to-1 speedup, but you’ll still have an improvement, maybe something like 3-to-1: the four of you can get it done in 20 minutes instead of an hour.

  27. Diminishing Returns If we now put Dave and Tom and Horst and Brandon on the corners of the table, there’s going to be a whole lot of contention for the shared resource, and a lot of communication at the many interfaces. So the speedup y’all get will be much less than we’d like; you’ll be lucky to get 5-to-1. So we can see that adding more and more workers onto a shared resource is eventually going to have a diminishing return.

  28. Distributed Parallelism Now let’s try something a little different. Let’s set up two tables, and let’s put you at one of them and Scott at the other. Let’s put half of the puzzle pieces on your table and the other half of the pieces on Scott’s. Now y’all can work completely independently, without any contention for a shared resource. BUT, the cost per communication is MUCH higher (you have to scootch your tables together), and you need the ability to split up (decompose) the puzzle pieces reasonably evenly, which may be tricky to do for some puzzles.

  29. More Distributed Processors It’s a lot easier to add more processors in distributed parallelism. But, you always have to be aware of the need to decompose the problem and to communicate among the processors. Also, as you add more processors, it may be harder to load balance the amount of work that each processor gets.

  30. Load Balancing Load balancing means ensuring that everyone completes their workload at roughly the same time. For example, if the jigsaw puzzle is half grass and half sky, then you can do the grass and Scott can do the sky, and then y’all only have to communicate at the horizon – and the amount of work that each of you does on your own is roughly equal. So you’ll get pretty good speedup.

  31. Load Balancing EASY HARD Load balancing can be easy, if the problem splits up into chunks of roughly equal size, with one chunk per processor. Or load balancing can be very hard.

  32. CS 491 – Parallel and Distributed Computing

  33. References [1] Image by Greg Bryan, Columbia U. [2] “Update on the Collaborative Radar Acquisition Field Test (CRAFT): Planning for the Next Steps.” Presented to NWS Headquarters August 30 2001. [3] Seehttp://hneeman.oscer.ou.edu/hamr.htmlfor details. [4]http://www.dell.com/ [5]http://www.vw.com/newbeetle/ [6] Richard Gerber, The Software Optimization Cookbook: High-performance Recipes for the Intel Architecture. Intel Press, 2002, pp. 161-168. [7]RightMark Memory Analyzer. http://cpu.rightmark.org/ [8]ftp://download.intel.com/design/Pentium4/papers/24943801.pdf [9] http://www.seagate.com/cda/products/discsales/personal/family/0,1085,621,00.html [10]http://www.samsung.com/Products/OpticalDiscDrive/SlimDrive/OpticalDiscDrive_SlimDrive_SN_S082D.asp?page=Specifications [11]ftp://download.intel.com/design/Pentium4/manuals/24896606.pdf [12]http://www.pricewatch.com/

  34. Condor Pool • Condor is a software technology that allows idle desktop PCs to be used for number crunching. • OU IT has deployed a large Condor pool (773 desktop PCs in IT student labs all over campus). • It provides a huge amount of additional computing power – more than was available in all of OSCER in 2005. • 13+ TFLOPs peak compute speed. • And, the cost is very very low – almost literally free. • Also, we’ve been seeing empirically that Condor gets about 80% of each PC’s time.

More Related