generic library interception generic library interception
play

Generic Library Interception Generic Library Interception for - PowerPoint PPT Presentation

Generic Library Interception Generic Library Interception for Improved Performance Measurement for Improved Performance Measurement and Insight and Insight Ronny Brendel, Bert Wesarg, Ronny Tschter, Matthias Weber, Thomas Ilsche, Sebastian


  1. Generic Library Interception Generic Library Interception for Improved Performance Measurement for Improved Performance Measurement and Insight and Insight Ronny Brendel, Bert Wesarg, Ronny Tschüter, Matthias Weber, Thomas Ilsche, Sebastian Oeste 6th Workshop on Extreme-Scale Programming Tools (ESPT), Denver, USA, 12 th November 2017 ORNL is managed by UT-Battelle for the US Department of Energy

  2. Motivation & Related Work • Libraries are increasingly important – Automatic compiler instrumentation does not provide instrumentation for external code – Sampling does not measure exact time and call counts • Fixed wrappers are commonplace in performance analysis tools • Aside from performance analysis, library interception is desirable for: Providing wrappers for other languages (SWIG/CLIF) – Performance tuning (Spectrum MPI) – and e.g. correctness checking (MUST) – 2 Generic Library Interception for Improved Performance Measurement and Insight

  3. Methodology • A wrapper library has to look exactly the same as the original one – Exact same symbol names (function names + signatures) • And has to forward the calls – Needs to know all the return and argument types so that it can forward them • C/C++ makes this very hard 3 Generic Library Interception for Improved Performance Measurement and Insight

  4. Methodology int printf(const char *format, ...); int function_pointer_arg(int (* f)(double)); int function_pointer_without_star_arg(int (f)(double)); typedef int (*fn_t)(double); fn_t return_function_pointer_typedef(void); 1 int(*)(double) return_function_pointer(void); 2 int (*return_function_pointer(void)) (double); 3 4 Generic Library Interception for Improved Performance Measurement and Insight

  5. Methodology int printf(const char *format, ...); int function_pointer_arg(int (* f)(double)); int function_pointer_without_star_arg(int (f)(double)); typedef int (*fn_t)(double); fn_t return_function_pointer_typedef(void); 1 int(*)(double) return_function_pointer(void); 2 int (*return_function_pointer(void)) (double); 3 5 Generic Library Interception for Improved Performance Measurement and Insight

  6. Methodology typedef int array_type[2]; int typedef_array_return(void)[2]; array_type typedef_array_return(void); array_type* typedef_array_return(void); 1 int[2]* array_return_1(void); 2 int array_return_2(void)[2]*; 3 6 Generic Library Interception for Improved Performance Measurement and Insight

  7. Methodology typedef int array_type[2]; int typedef_array_return(void)[2]; array_type typedef_array_return(void); array_type* typedef_array_return(void); 1 int[2]* array_return_1(void); 2 int array_return_2(void)[2]*; 3 7 Generic Library Interception for Improved Performance Measurement and Insight

  8. Methodology • The symbol corresponding to the function has to exist • Other caveats • Macros in headers • Compile flags, compiler wrappers • Static versus dynamic library linking and wrapping • Multiple headers, multiple libraries • All these considerations led to us conceiving a library wrapper creation and usage workflow 8 Generic Library Interception for Improved Performance Measurement and Insight

  9. Workflow (Live) 9 Generic Library Interception for Improved Performance Measurement and Insight

  10. Case Studies • Gromacs (FFTW) • PERMON (PETSc) • Examples: – Qt Widgets & Qt Gui – GNU GMP – math.h 10 Generic Library Interception for Improved Performance Measurement and Insight

  11. Conclusions • Usable C/C++ library wrapping • Provides insight into – Library Usage – Closed-source libraries – Interaction between libraries 11 Generic Library Interception for Improved Performance Measurement and Insight

  12. Future Work • Support staff friendliness – Automation – Reuse – Versioning • Score-P for unmodified binaries • Record function arguments • Independence from Score-P 12 Generic Library Interception for Improved Performance Measurement and Insight

  13. Thank you • http://automaton2000.com/espt.pdf • https://github.com/score-p/scorep_libwrap_examples This research used resources of the Oak Ridge Leadership Computing Facility at Oak Ridge National Laboratory, which is supported by the Office of Science of the Department of Energy under Contract DE-AC05-00OR22725. This work is supported in part by the German Research Foundation (DFG) within the CRC 912 - HAEC. 13 Generic Library Interception for Improved Performance Measurement and Insight

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