How Profile-Guided Optimization Makes Your Code Faster Without Any Code Changes - Stephan Dollberg

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ส.ค. 2024
  • #Programming​ #Cpp​ #CppOnSea​
    2021 Program: cpponsea.uk/20...
    C++ On Sea Website: cpponsea.uk/
    C++ On Sea Twitter: / cpponsea
    Streamed & Edited By Digital Medium Ltd: events.digital...​
    -------
    In this talk we will have a deep dive into Profile-Guided Optimization (PGO) and the assembly level transformations it results in. While PGO has been around for quite a while and is available in all of the major compilers it’s not yet widely used. At the same time it provides great performance benefits without requiring a single code change. It’s also one of the major areas in which compilers get constant improvements across releases. This talk will specifically focus on the GCC implementation though most concepts are similar in other compilers.
    We will start by looking at how to deploy PGO and challenges faced while doing so. The main part of this talk will focus on optimizations which the compiler can perform based on PGO instrumentation data, such as function relocation or function splitting. We will compare generated assembly from non-PGO-optimized binaries to PGO-optimized ones. This will be accompanied by measuring the effects of these optimizations based on hardware performance counters and traditional performance measurements.
    -------
    Stephan Dollberg
    Stephan is a Software Engineer at G-Research working on low latency trading systems. He is most passionate about building software that works reliably and fast at the same time.
    He mostly codes in C++ but is generally language agnostic. His main areas of interest are in systems engineering, such as concurrency, networking or simply optimizing data structures and algorithms. Favorite data structures are hashmaps.
    -------
    C++ on Sea is an annual c++ and coding conference, usually held in Folkestone, Kent in the UK. The 2020 & 2021 conferences were moved to virtual events due to social distancing requirements.
    Produced and Edited by Digital Medium Ltd: events.digital...
    Enquiries: events@digital-medium.co.uk

ความคิดเห็น • 5

  • @hselinsons
    @hselinsons 6 หลายเดือนก่อน

    Thank you very much! Really helpful.

    • @cpponsea
      @cpponsea  6 หลายเดือนก่อน

      So pleased to hear that you found the presentation to be of help.

  • @cgcode
    @cgcode 2 ปีที่แล้ว +1

    Thank you for your great talk! It was really helpful to me!

    • @cpponsea
      @cpponsea  2 ปีที่แล้ว +1

      You're so welcome!

  • @atlas_zhang
    @atlas_zhang 9 หลายเดือนก่อน

    Very helpful!I wonder if the different version of clang/gcc influence the performance of pgo?Thank you