welcome today s agenda
play

Welcome! Todays Agenda: Grand Recap Exam Now What Todays - PowerPoint PPT Presentation

/INFOMOV/ Optimization & Vectorization J. Bikker - Sep-Nov 2019 - Lecture 14: Grand Recap Welcome! Todays Agenda: Grand Recap Exam Now What Todays Agenda: Grand Recap Exam TOTAL RECAP Now


  1. /INFOMOV/ Optimization & Vectorization J. Bikker - Sep-Nov 2019 - Lecture 14: “Grand Recap” Welcome!

  2. Today’s Agenda: ▪ Grand Recap ▪ Exam ▪ Now What

  3. Today’s Agenda: ▪ Grand Recap ▪ Exam TOTAL RECAP ▪ Now What

  4. INFOMOV – Lecture 14 – “Digest & Recap” 4 Recap

  5. INFOMOV – Lecture 14 – “Digest & Recap” 5 Recap – lecture 1 Profiling High Level Basic Low Level Cache & Memory Data-centric Compilers Fixed-point Arithmetic CPU architecture SIM IMD GPGPU

  6. INFOMOV – Lecture 14 – “Digest & Recap” 6 Recap – lecture 1

  7. INFOMOV – Lecture 14 – “Digest & Recap” 7 Recap – lecture 2 fldz xor ecx, ecx fld dword ptr ds:[405290h] mov edx, 28929227h fld dword ptr ds:[40528Ch] push esi E E E = 50000 mov esi, 0C350h E E E E E E 2 46 E E E add ecx, edx = (!!) E E E mov eax, 91D2A969h E E E 28763 xor edx, 17737352h shr ecx, 1 t mul eax, edx fld st(1) Red = u4 & (255 << 16); faddp st(3), st Green = u4 & (255 << 8); mov eax, 91D2A969h Blue = u4 & 255; shr edx, 0Eh add ecx, edx fmul st(1),st xor edx, 17737352h shr ecx, 1 mul eax, edx shr edx, 0Eh dec esi jne tobetimed<0>+1Fh

  8. INFOMOV – Lecture 14 – “Digest & Recap” 8 Recap – lecture 3 slot 0 slot 1 slot 2 slot 3 0000 T0 0001 L1 I-$ L2 $ 0002 T1 L1 D-$ 0003 0004 0005 T0 L1 I-$ L2 $ 0006 T1 L1 D-$ 0007 L3 $ 0008 0009 T0 L1 I-$ L2 $ 000A T1 L1 D-$ 000B 000C 000D T0 L1 I-$ L2 $ 000D T1 L1 D-$ 000F

  9. INFOMOV – Lecture 14 – “Digest & Recap” 9 Recap – lecture 4

  10. INFOMOV – Lecture 14 – “Digest & Recap” 10 Recap – lecture 5 & 6 Agner Fog: “Automatic vectorization is the easiest way of generating SIMD code, and I would recommend to use this method when it works. Automatic vectorization may fail or produce suboptimal code in the following cases: ▪ when the algorithm is too complex. ▪ when data have to be re-arranged in order to fit into vectors and it is not obvious to the compiler how to do this or when other parts of the code needs to be changed to handle the re-arranged data. ▪ when it is not known to the compiler which data sets are bigger or smaller than the vector size. ▪ when it is not known to the compiler whether the size of a data set is a multiple of the vector size or not. ▪ when the algorithm involves calls to functions that are defined elsewhere or cannot be inlined and which are not readily available in vector versions. ▪ when the algorithm involves many branches that are not easily vectorized. ▪ when floating point operations have to be reordered or transformed and it is not known to the compiler whether these transformations are permissible with respect to precision, overflow, etc. ▪ when functions are implemented with lookup tables. AoS AoS SIMD Basics Other instructions: __m128 c4 = _mm_div_ps( a4, b4 ); // component-wise division SoA SoA __m128 d4 = _mm_sqrt_ps( a4 ); // four square roots __m128 d4 = _mm_rcp_ps( a4 ); // four reciprocals __m128 d4 = _mm_rsqrt_ps( a4 ); // four reciprocal square roots (!) __m128 d4 = _mm_max_ps( a4, b4 ); __m128 d4 = _mm_min_ps( a4, b4 ); Keep the assembler-like syntax in mind: __m128 d4 = dx4 * dx4 + dy4 * dy4;

  11. INFOMOV – Lecture 14 – “Digest & Recap” 11 Recap – lecture 7

  12. INFOMOV – Lecture 14 – “Digest & Recap” 12 Recap – lecture 8

  13. INFOMOV – Lecture 14 – “Digest & Recap” 13 Recap – lecture 9 & 10

  14. INFOMOV – Lecture 14 – “Digest & Recap” 14 Recap – lecture 11

  15. INFOMOV – Lecture 14 – “Digest & Recap” 15 Recap – lecture 13

  16. INFOMOV – Lecture 14 – “Digest & Recap” 16 Recap – Lecture 14 TOTAL RECAP

  17. INFOMOV – Lecture 14 – “Digest & Recap” 17 Recap “Dear Charles,

  18. Today’s Agenda: ▪ Grand Recap ▪ Exam ▪ Now What

  19. INFOMOV – Lecture 14 – “Digest & Recap” 19 Exam What to Study 1. Slides 2. Literature on the website and in the slides: ▪ Modern Microprocessors: a 90 minute guide, see lecture 2 slides or click here ▪ What Every Programmer Should Know About Memory (just the yellow bits) ▪ Gallery of Processor Cache Effects (link) ▪ Game Programming Patterns - Data Locality ▪ Data-Oriented Design (Or Why You Might Be Shooting Yourself in the Foot With OOP) ▪ The Neglected Art of Fixed Point Arithmetic ▪ Cache-oblivious Algorithms and Data Structures (just the yellow bits) ▪ A Survey of General-Purpose Computation on Graphics Hardware 3. 2016/2017/2018 exams 4. Skills you picked up with the practical assignments

  20. INFOMOV – Lecture 14 – “Digest & Recap” 20 Exam You may bring a dictionary to the exam. You may answer in Dutch, if you wish. You may not bring notes to the exam. Example Questions You may bring pizza to the exam. CPUs and GPUs have fundamentally different core strategies for dealing with latencies such as memory access time. What are these strategies?

  21. INFOMOV – Lecture 14 – “Digest & Recap” 21 Exam You may bring a dictionary to the exam. You may answer in Dutch, if you wish. You may not bring notes to the exam. Example Questions You may bring pizza to the exam. Why is the theoretical peak performance of a GPU typically much higher than that of a CPU?

  22. INFOMOV – Lecture 14 – “Digest & Recap” 22 Exam You may bring a dictionary to the exam. You may answer in Dutch, if you wish. You may not bring notes to the exam. Example Questions You may bring pizza to the exam. What is DMA?

  23. INFOMOV – Lecture 14 – “Digest & Recap” 23 Exam You may bring a dictionary to the exam. You may answer in Dutch, if you wish. You may not bring notes to the exam. Example Questions You may bring pizza to the exam. Explain the concept of streaming processing.

  24. INFOMOV – Lecture 14 – “Digest & Recap” 24 Exam You may bring a dictionary to the exam. You may answer in Dutch, if you wish. You may not bring notes to the exam. Example Questions You may bring pizza to the exam. What or who is NUMA?

  25. INFOMOV – Lecture 14 – “Digest & Recap” 25 Exam You may bring a dictionary to the exam. You may answer in Dutch, if you wish. You may not bring notes to the exam. Example Questions You may bring pizza to the exam. Explain what false sharing is.

  26. INFOMOV – Lecture 14 – “Digest & Recap” 26 Exam You may bring a dictionary to the exam. You may answer in Dutch, if you wish. You may not bring notes to the exam. Example Questions You may bring pizza to the exam. How does a GPU handle conditional code?

  27. INFOMOV – Lecture 14 – “Digest & Recap” 27 Exam You may bring a dictionary to the exam. You may answer in Dutch, if you wish. You may not bring notes to the exam. Example Questions You may bring pizza to the exam. Why does OpenCL have a native_sqrt as well as an sqrtf?

  28. INFOMOV – Lecture 14 – “Digest & Recap” 28 Exam You may bring a dictionary to the exam. You may answer in Dutch, if you wish. You may not bring notes to the exam. Example Questions You may bring pizza to the exam. Do modern systems still use SRAM? Why / why not?

  29. INFOMOV – Lecture 14 – “Digest & Recap” 29 Exam You may bring a dictionary to the exam. You may answer in Dutch, if you wish. You may not bring notes to the exam. Example Questions You may bring pizza to the exam. How many bits are needed for a 128KB 8-way set associative cache, assuming a cache line size of 128 bytes?

  30. INFOMOV – Lecture 14 – “Digest & Recap” 30 Exam You may bring a dictionary to the exam. You may answer in Dutch, if you wish. You may not bring notes to the exam. Example Questions You may bring pizza to the exam. Is self-modifying code possible on a modern processor? Under what conditions?

  31. Today’s Agenda: ▪ Grand Recap ▪ Exam ▪ Now What

  32. INFOMOV – Lecture 14 – “Digest & Recap” 32 Now What

  33. INFOMOV – Lecture 14 – “Digest & Recap” 33 Now What

  34. INFOMOV – Lecture 14 – “Digest & Recap” 34 Now What

  35. INFOMOV – Lecture 14 – “Digest & Recap” 35 Now What

  36. /INFOMOV2019/

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend