Skip to main content

perf event wrapper for python

Project description

Performance Counters api for python

Build Status

Table of contents

What are the performance counters

Performance counters are special hardware registers available on most modern CPUs. These registers count the number of certain types of events: such as instructions executed, cache misses suffered, or branches mis-predicted without slowing down the kernel or applications. These registers can also trigger interrupts when a threshold number of events have passed and can thus be used to profile the code that runs on that CPU.

Reading Performance counters

  • Instructions
    • rdmsr: Reads the contents of a 64-bit model specific register (MSR) specified in the ECX register into registers EDX:EAX. This instruction must be executed at privilege level 0 or in real-address mode

    • rdpmc: Is slightly faster that the equivelent rdmsr instruction. rdpmc can also be configured to allow access to the counters from userspace, without being priviledged.

  • From Userspace (Linux) : The Linux Performance Counter subsystem provides an abstraction of these hardware capabilities. It provides per task and per CPU counters, counter groups, and it provides event capabilities on top of those. It provides "virtual" 64-bit counters, regardless of the width of the underlying hardware counters. Performance counters are accessed via special file descriptors. There's one file descriptor per virtual counter used. The special file descriptor is opened via the perf_event_open() system call. These system call do not use rdpmc but rdpmc is not necessarily faster than other methods for reading event values.

Python API

This module provide a high-level abstraction API to Linux perf events without overhead while executing

How it works:

Using perfmon library python wrapper to perform the system calls and configure the structures to create the file descriptors.

The file descriptors are passed to the workload module develop on c++ which start the target application and read from the file descriptors

Installation

sudo apt install python-dev swig libpfm4-dev
pip install performance-features

Usage

List events

from profiler import *

print(get_supported_pmus())
print(get_supported_events())

Sampling events

from profiler import *

try:
    events= [['PERF_COUNT_HW_INSTRUCTIONS'],
            ['PERF_COUNT_HW_BRANCH_INSTRUCTIONS','PERF_COUNT_HW_BRANCH_MISSES'],
            ['PERF_COUNT_SW_PAGE_FAULTS']]
    perf= Profiler(program_args= ['/bin/ls','/'], events_groups=events)
    data= perf.run(sample_period= 0.01)
    print(data)
except RuntimeError as e:
    print(e.args[0])

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

performance_features-0.2.0.tar.gz (40.6 kB view details)

Uploaded Source

File details

Details for the file performance_features-0.2.0.tar.gz.

File metadata

  • Download URL: performance_features-0.2.0.tar.gz
  • Upload date:
  • Size: 40.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.1

File hashes

Hashes for performance_features-0.2.0.tar.gz
Algorithm Hash digest
SHA256 707a79a9e290994761e35f284eb1f363372f6c4ff955abb6577b8b721d70162a
MD5 23d44eaded02e75e273a13822abc99cf
BLAKE2b-256 28a2ea2a749b96e1a9097b3e4fafbdee1b9717d52514b0f9fb5e76e1879ec7b1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page