an llvm instrumentation plug in for score p performance
play

AN LLVM INSTRUMENTATION PLUG-IN FOR SCORE-P Performance: an old - PowerPoint PPT Presentation

AN LLVM INSTRUMENTATION PLUG-IN FOR SCORE-P Performance: an old problem The most constant difficulty in contriving the engine has arisen from the desire to reduce Difference Engine the time in which the calculations were executed to the


  1. AN LLVM INSTRUMENTATION PLUG-IN FOR SCORE-P

  2. Performance: an old problem “ The most constant difficulty in contriving the engine has arisen from the desire to reduce Difference Engine the time in which the calculations were executed to the shortest which is possible. ” Charles Babbage 1791 – 1871 November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 2

  3. Performance Analysis • Monitoring infrastructures that capture performance relevant data during application execution Monitor Application November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 3

  4. Agenda • Methodology • Implementation • Case Study • Conclusion November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 4

  5. Methodology • Source code annotations (hooks) • Hooks invoke the monitor Source Code Instrumentation November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 5

  6. Methodology void func(int i) void func ( int i) { { ENTER ("func"); if (i>0) if (i>0) { { func(i-1); func(i-1); } } EXIT ("func"); } } November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 6

  7. Methodology Instrumentation techniques • Manual • Automatic • Compiler instrumentation (e.g., Clang option -finstrument-functions ) • LLVM compiler pass November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 7

  8. Methodology Requirements • Instrumentation of function enter and exit events • Independence from the programming language of the source code • Support of filtering options both at compile time and runtime • Support for user defined filter rules • Avoid interference with optimizations applied by the compiler • Internal handling of meta data • Exception-aware instrumentation November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 8

  9. Methodology • Implementation of a FunctionPass using the LLVM Pass Framework • Invoked for each application function • Insert hooks into the LLVM Intermediate Representation (IR) • Applying filtering techniques in order to Portion of the LLVM IR relevant for this work realize selective function instrumentation at compile-time November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 9

  10. Implementation • LLVM pass implementation to ensure independence from the programming language of the source code • Integration in the Score-P monitoring infrastructure LLVM infrastructure overview Overview of the Score-P monitoring infrastructure and related analysis tools November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 10

  11. Implementation Override virtual method runOnFunction(Function &F) which is called for each function in the processed IR • Collecting meta data • Deciding whether a function is instrumented • Default filtering rules • User defined filtering rule set • Adding calls to the monitoring infrastructure November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 11

  12. Implementation FUNCTION : static uint32_t handle = INVALID_REGION ; if ( handle == INVALID_REGION ) register_region( &descr ); if ( handle != FILTERED_REGION ) enter_region( handle ); try { /* FUNCTION BODY */ } finally { if ( handle != FILTERED_REGION ) exit_region( handle ); } November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 12

  13. Implementation Instrumentation plug-in usage • Pass is built as a shared library • Compiler loads this shared library to enable instrumentation at compile-time • LLVM pass registry manages registration and initialization of the pass subsystem at compiler startup clang -Xclang – load -Xclang <instrumenation_pass_library.so> -c main.c November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 13

  14. Case Study Comparison of event sequences • Instrumentation of a Jacobi solver application (MPI+OpenMP) with • Automatic compiler instrumentation • LLVM instrumentation plug-in November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 14

  15. Case Study – Comparison of Event Sequences Overview of all processes/ threads Detailed information about Call stack of message an individual transfer thread Timeline visualization of the recorded event sequence in Vampir November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 15

  16. Case Study – Comparison of Event Sequences • Number of user function invocations over all processing elements Number of user function invocations Optimization level Automatic Instrumentation compiler via plug-in instrumentation -O0 2014 2014 2014 2014 -O1 2014 2010 -O2 2014 2008 -O3 November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 16

  17. Case Study – Comparison of Event Sequences Functions Functions inlined in inlined in higher higher optimization optimization levels levels Call stack visualization of the Jacobi application compiled with different optimization levels November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 17

  18. Case Study Comparison of runtime overheads • Instrumentation of the miniFE application (OpenMP) with • Automatic compiler instrumentation • LLVM instrumentation plug-in November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 18

  19. Case Study - Comparison of Runtime Overheads • Runtime in seconds of the miniFE experiments • Each experiment was executed three times, the minimum of these runs is shown Experiment Runtime in seconds Uninstrumented 6 Automatic compiler instrumentation 800 Automatic compiler instrumentation, 140 runtime filter Instrumentation via plug-in 27 Instrumentation via plug-in, 7 compile-time filter November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 19

  20. Conclusion • LLVM plug-in supporting • Exception-aware instrumentation • Selective instrumentation of specific functions at compile-time • Runtime filtering • Feedback • Transferring additional information from the Front-End to the Optimizer (source code location, demangled function names, mark internal functions) November 13, 2017 An LLVM Instrumentation Plug-in for Score-P 20

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