Coder Social home page Coder Social logo

majianpeng / pmu-tools Goto Github PK

View Code? Open in Web Editor NEW

This project forked from andikleen/pmu-tools

0.0 1.0 0.0 4.24 MB

Intel PMU profiling tools

License: GNU General Public License v2.0

Shell 0.50% C++ 0.01% Python 97.09% Perl 0.03% C 2.04% Makefile 0.04% HTML 0.01% Roff 0.27%

pmu-tools's Introduction

pmu-tools

Python linting and testing jevents test

pmu tools is a collection of tools and libraries for profile collection and performance analysis on Intel CPUs on top of Linux perf. This uses performance counters in the CPU.

Quick (non-) installation

pmu-tools doesn't really need to be installed. It's enough to clone the repository and run the respective tool (like toplev or ocperf) out of the source directory.

To run it from other directories you can use export PATH=$PATH:/path/to/pmu-tools or symlink the tool you're interested in to /usr/local/bin or ~/bin. The tools automatically find their python dependencies.

When first run, toplev / ocperf will automatically download the Intel event lists from https://download.01.org. This requires working internet access. Later runs can be done offline. It's also possible to download the event lists ahead, see pmu-tools offline

toplev works with both python 2.7 and python 3. However it requires an not too old perf tools and depending on the CPU an uptodate kernel. For more details see toplev kernel support

The majority of the tools also don't require any python dependencies and run in "included batteries only" mode. The main exception is generating plots or XLSX spreadsheets, which require external libraries.

If you want to use those run

  pip install -r requirements.txt

once, or follow the command suggested in error messages.

jevents is a C library. It has no dependencies other than gcc/make and can be built with

cd jevents
make

Quick examples

toplev -l2 program

measure whole system in level 2 while program is running

toplev -l1 --single-thread program

measure single threaded program. system must be idle.

toplev -l3 --no-desc -I 100 -x, sleep X

measure whole system for X seconds every 100ms, outputting in CSV format.

toplev --all --core C0 taskset -c 0,1 program

Measure program running on core 0 with all nodes and metrics enabled.

toplev --all --xlsx x.xlsx -a sleep 10

Generate spreadsheet with full system measurement for 10 seconds

For more details on toplev please see the toplev tutorial

What tool to use for what?

You want to:

  • understand CPU bottlenecks on the high-level: use toplev.
  • display toplev output graphically: toplev --xlsx (or --graph)
  • know what CPU events to run, but want to use symbolic names for a new CPU: use ocperf.
  • measure interconnect/caches/memory/power management on Xeon E5+: use ucevent (or toplev)
  • Use perf events from a C program: use jevents
  • Query CPU topology or disable HyperThreading: use cputop
  • Change Model Specific Registers: use msr
  • Change PCI config space: use pci

For more details on the tools see TOOLS

All features:

Major tools/libraries

  • The "ocperf" wrapper to "perf" that provides a full core performance counter event list for common Intel CPUs. This allows to use all the Intel events, not just the builtin events of perf. Can be also used as a library from other python programs
  • The "toplev.py" tool to identify the micro-architectural bottleneck for a workload. This implements the TopDown or TopDown2 methodology.
  • The "ucevent" tool to manage and compute uncore performance events. Uncore is the part of the CPU that is not core. Supports many metrics for power management, IO, QPI (interconnect), caches, and others. ucevent automatically generates event descriptions for the perf uncore driver and pretty prints the output. It also supports computing higher level metrics derived from multiple events.
  • A library to resolve named intel events (like INST_RETIRED.ANY) to perf_event_attr (jevents) and provide higher level function for using the Linux perf API for self profiling or profiling other programs. It also has a "perf stat" clone called "jestat"
  • A variety of tools for plotting and post processing perf stat -I1000 -x, or toplev.py -I1000 -x, interval measurements.
  • Some utility libraries and functions for MSR access, CPU topology and other functionality,as well as example programs how to program the Intel PMU.

There are some obsolete tools which are not supported anymore, like simple-pebs. These are kept as PMU programming reference, but may need some updates to build on newer Linux kernels.

Recent new features:

TMA 4.4 release

  • toplev updated to Ahmad Yasin's TMA 4.4

    • Add support for Sapphire Rapids servers ** New breakdown of Heavy_Operations, add new nodes for Assists, Page Faults ** A new Int_Operations level 3 node, including Integer Vector and Shuffle ** Support for RDT MBA stalls. ** AMX and FP16 support ** Better FP_Vector breakdown ** Support 4wide MITE breakdown. ** Add new Info.Pipeline Metrics group. ** Support for Retired/Executed uops and String instruction cycles ** Frequency of microcode assits. ** Add Core_Bound_Likely for SMT and IpSWF for software prefetches. ** Cache bandwidth is split per processor and per core. ** Snoop Metric group for cross processor snoops. ** Various bug fixes and improvements.
  • Support for running on Alderlake with a hybrid Goldencove / Gracemont model Add a new --aux option to control the auxillary nodes on Atom. --cputype atom/core is supported to filter on core types.

  • cputop supports an atom/core shortcut to generate the cpu mask of hybrid CPUs. Use like toplev $(cputop core cpuset) workload

  • toplev now supports a --abbrev option to abbreviate node names

  • Add experimental --thread option to support per SMT thread measurements on pre ICL CPUs.

TMA 4.3 release

  • toplev updated to Ahmad Yasin's TMA 4.3: New Retiring.Light_Operations breakdown

    Notes: ADL is missing so far. TGL/RKL still use the ICL model. if you see missing events please remove ~/.cache/pmu-events/* to force a redownload

    • New Tree Metrics (nodes)
      • A brand new breakdown of the Light_Operations sub-category (under Retiring category) per operation type:
        • Memory_Operations for (fraction of retired) slots utilized by load or store memory accesses
        • Fused_Instructions for slots utilized by fused instruction pairs (mostly conditional branches)
        • Non_Fused_Branches for slots utilized by remaining types of branches.
        • (Branch_Instructions is used in lieu of the last two nodes for ICL .. TGL models)
        • Nop_Instructions for slots utilized by NOP instructions
        • FP_Arith - a fraction estimate of arithmetic floating-point operations (legacy)
      • CISC new tree node for complex instructions (under the Heavy_Operations sub-category)
      • Decoder0_Alone new tree node for instructions requiring heavy decoder (under the Fetch_Bandwidth sub-category)
      • Memory_Fence new tree node for LFENCE stalls (under the Core_Bound sub-category)
    • Informative Groups
      • New Info.Branches group for branch instructions of certain types: Cond_TK (Conditional TaKen branches), Cond_NT (Conditional Non-Taken), CallRet, Jump and Other_Branches.
      • Organized (almost all) Info metrics in 5 mega-buckets of {Fed, Bad, Ret, Cor, Mem} using the Metric Group column
    • New Informative Metrics
      • UpTB for Uops per Taken Branch
      • Slots_Utilization for Fraction of Physical Core issue-slots utilized by this Logical Processor [ICL onwards]
      • Execute_per_Issue for the ratio of Uops Executed to Uops Issued (allocated)
      • Fetch_UpC for average number of fetched uops when the front-end is delivering uops
      • DSB_Misses_Cost for Total penalty related to DSB misses
      • IpDSB_Miss_Ret for Instructions per (any) retired DSB miss
      • Kernel CPI for Cycles Per Instruction in kernel (operating system) mode
    • Key Enhancements & fixes
      • Fixed Heavy_Operations for few uop instructions [ICL, ICX, TGL].
      • Fixed Fetch_Latency overcount (or Fetch_Bandwidth undercount) [ICL, ICX, TGL]
      • Capped nodes using fixed-costs, e.g. DRAM_Bound, to 100% max. Some tools did this in ad-hoc manner thus far [All]
      • Fixed DTLB_{Load,Store} and STLB_Hit_{Load,Store} in case of multiple hits per cycles [SKL onwards]
      • Fixed Lock_Latency to account for lock that hit in L1D or L2 caches [SKL onwards]
      • Fixed Mixing_Vectors and X87_Use to Clocks and Slots Count Domains, respectively [SKL onwards]
      • Many other fixes: Thresholds, Tagging (e.g. Ports_Utilized_2), Locate-with, Count Domain, Metric Group, Metric Max, etc
  • jestat now supports CSV output (-x,), not aggregated.

  • libjevents has utility functions to output event list in perf stat style (both CSV and normal)

  • toplev now outputs multiplexing statistics by default. This can be disabled with --no-mux.

  • cputop now supports hybrid types (type=="core"/"atom")

  • ucevent now supports Icelake Server

  • toplev now supports Icelake Server

TMA 4.2 release

  • toplev updated to Ahmad Yasin's TMA 4.2: Bottlenecks Info group, Tuned memory access costs
    • New Metrics
      • New Info.Bottlenecks group aggregating total performance-issue costs in SLOTS across the tree: [SKL onwards]
        • Memory_Latency, Memory_Bandwidth, Memory_Data_TLBs
        • Big_Code, Instruction_Fetch_BW, Branching_Overheads and
        • Mispredictions (introduced in 4.1 release)
      • New tree node for Streaming_Stores [ICL onwards]
    • Key Enhancements & fixes
      • Tuned memory metrics with up-to-date frequency-based measured costs [TGL, ICX]
        • The Average_Frequency is calculated using the TSC (TimeStamp Counter) value
        • With this key enhancement #Mem costs become NanoSecond- (was Constant), DurationTimeInMilliSeconds becomes ExternalParameter CountDomain and #Base_Frequency is deprecated
        • The previous method of setting frequency using Base_Frequency is deprecated.
      • Fixed Ports_Utilization for detection of serializing operations - issue#339 [SKL onwards]
      • Tuned MITE, DSB, LSD and move to Slots_Estimated domain [all]
      • Capping DTLB_Load and STLB_Hit_Load cost using events in Clocks CountDomain [SKL onwards]
      • Tuned Pause latency using default setting [CLX]
      • Fixed average Assists cost [IVB onwards]
      • Fixed Mispredicts_Resteers Clears_Resteers Branch_Mispredicts Machine_Clears and Mispredictions [ICL+]
      • A parameter to avoid using PERF_METRICS MSR e.g. for older OS kernels (implies higher event multiplexing)
      • Reduced # events for select nodes collections (lesser event multiplexing): Backend_Bound/Core_Bound, Clear_Resteers/Unknwon_Branches, Kernel_Utilization
      • Other fixes: Thresholds, Tagging (e.g. Ports_Utilized_2), Locate-with, etc
  • toplev now has a --parallel argument to can process large --import input files with multiple threads. There is a new interval-merge tool that can merge multiple perf-output files.
  • toplev now supports a --subset argument that can process parts of --import input files, either by splitting them or by sampling. This is a building block for more efficient processing of large input files.
  • toplev can now generate scripts to collect data with perf stat record to lower runtime collection overhead, and import the perf.data, using a new --script-record option. This currently requires unreleased perf patches, hopefully in Linux 5.11.
  • toplev can now support json files for Chrome's about://tracing with --json
  • toplev now supports --no-multiplex in interval mode (-Ixxx)
  • The tools now don't force python 2 anymore to support running out of the box on distributions which do not install python 2.
  • toplev now hides the perf command line by default. Override with --perf.
  • Updated to TMA 4.11: Fixed an error in misprediction-related and Power License metrics
  • toplev now supports the new fixed TMA metrics counters on Icelake. This requires the upcoming 5.9+ kernel.

TMA 4.1 release

  • toplev was updated to Ahmad Yasin's/Anton Hanna's TMA 4.1 New Metrics:
    • Re-arrange Retiring Level 2 into Light_Operations & Heavy_Operations. Light_Operations replaces the previous Base (or "General Retirement") while Heavy_Operations is a superset of the Microcode_Sequencer node (that moves to Level 3)
    • Mixing_Vectors: hints on a pitfall when intermixing the newer AVX* with legacy SSE* vectors, a tree node under Core Bound [SKL onwards] Key Enhancements & fixes
    • Tuning of Level 2 breakdown for Backend_Bound, Frontend_Bound (rollback FRONTEND_RETIRED 2-events use) [SKL onwards]
    • Improved branch misprediction related metrics to leverage a new PerfMon event [ICL onwards]
    • Improved CORE_CLKS & #Retire_Slots-based metrics [ICL onwards]
    • Adjusted cost of all nodes using MEM_LOAD_*RETIRED.* in case of shadow L1 d-cache misses
    • renamed Frontend_ to Fetch_Latency/Bandwidth [all]
    • Additional documentation/details to aid automated parsing in ‘For Tool Developers’.
    • Other fixes including Thresholds, Tagging (e.g. $issueSnoops), Locate-with, Metric Group
  • toplev can now generate charts in xlsx files with the --xchart option.

Older changes in CHANGES

Help wanted

  • The plotting tools could use a lot of improvements. Both tl-serve and tl-barplot. If you're good in python or JS plotting any help improving those would be appreciated.

Mailing list

Please post to the [email protected] mailing list. For bugs please open an issue on https://github.com/andikleen/pmu-tools/issues

Licenses

ocperf, toplev, ucevent, parser are under GPLv2, jevents is under the modified BSD license.

Andi Kleen [email protected]

pmu-tools's People

Contributors

aayasin avatar andikleen avatar ayasini avatar bkotlowski avatar bobrik avatar disconnect3d avatar florolf avatar gollum2411 avatar hanhwi avatar knweiss avatar mahikishan avatar matthew-olson-intel avatar mbeckersys avatar mrunge avatar nikai3d avatar nkurz avatar planeta avatar pllopis avatar rainm avatar saruspete avatar soramichi avatar stefanocarna avatar tcreech-intel avatar travisdowns avatar yhuang-intel avatar zestrada avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.