Kevin Schoedel 91ea3d50e1 [Size reports] Facilitate a size database (#15045) il y a 4 ans
..
collector a24a6c308a Small artifacts for bloat reports (#9331) il y a 4 ans
util 91ea3d50e1 [Size reports] Facilitate a size database (#15045) il y a 4 ans
README.md 91ea3d50e1 [Size reports] Facilitate a size database (#15045) il y a 4 ans
__init__.py df741076a9 Scripts to collect, aggregate, and report memory usage. (#5966) il y a 4 ans
collect.py 91ea3d50e1 [Size reports] Facilitate a size database (#15045) il y a 4 ans
df.py 65f4475188 Revert "Fix some alerts founded the LGTM system (#11966)" (#12295) il y a 4 ans
name.py df741076a9 Scripts to collect, aggregate, and report memory usage. (#5966) il y a 4 ans
report.py 91ea3d50e1 [Size reports] Facilitate a size database (#15045) il y a 4 ans
select.py 91ea3d50e1 [Size reports] Facilitate a size database (#15045) il y a 4 ans
sizedb.py 91ea3d50e1 [Size reports] Facilitate a size database (#15045) il y a 4 ans

README.md

This package contains routines to to collect, aggregate, and report memory usage, using Pandas DataFrame as the primary representation.

  • memdf.collect — Helpers to read memory information from various sources (e.g. executables) according to command line options.
  • memdf.df — DataFrame utilities, in particular definitions of columns and types for the main uses of data frames.
  • memdf.name — Names for synthetic symbols, etc. Individual readers are located under memdf.collector.
  • memdf.report — Helpers to write data frames in various formats according to command line or configured options.
  • memdf.select — Helpers to select relevant subsets of data frames according to command line or configured options.
  • memdf.sizedb — Helpers for a database of size information.

Modules under memdf.util are not specifically tied to memory usage.

  • memdf.util.config — Config utility class for managing command line or other options according to a declarative description.
  • memdf.util.github — Utilities for communicating with GitHub.
  • memdf.util.markdown — Utilities for manipulating Markdown text.
  • memdf.util.nd — Nested dictionary utilities, used by Config.
  • memdf.util.pretty — Pretty-printed logging utility functions.
  • memdf.util.sqlite - Utilities for connecting to a sqlite3 database.
  • memdf.util.subprocess — Utilities for executing external commands.