Python performance monitoring tool using HPC
Project description
CI & HPC ·
A simple framework which can monitor the performance and scalability of software packages. The framework presented here combines Continuous Integation & High Performance Computing together with a minimalistic set of Python scripts. The results can be visualised in form of static Jupyter notebook or in an interactive web page.
Features
- automatically run benchmarks of your project
- inspect performance and scalability of your project
- create complex configurations with travis-like syntax build matrix capabilities (
YAML
format)
How to use ci-hpc?
-
First install the framework by executing:
pip3 install --user ci-hpc
-
Create a configuration (file
config.yaml
) for your repository. In this cofiguration, you should specify several options.-
ci-hpc
needs to know, which repositories are part of your project. You can specify one or more repositories. Each repository will be cloned and checked out when installing. -
You also need to tell the
ci-hpc
how to install your project.
It can be as simple as./configure; make; make install
orpip install ./foo/
But it can be also quite complex, you can even simplify entire process with usage of install file:
with something like this!sh install.sh
(install.sh
in this case is a shell script, which contains your installation process) -
Next thing is testing section. Here,
ci-hpc
needs to know, what benchmarks you want to run under what configuration. You can create complex build matrices so your configuration can be kept simple and transparent.
-
-
When you are done with the configuration. You should probably verify, it is working. Assuming the following structure:
. └── hello-world └── config.yaml
Execute
ci-hpc
withcihpc --project hello-world
-
If everything works, setup a mongoDB server and add collection section (once again file
config.yaml
):-
ci-hpc
needs to know, what results you want to store. Is it a somejson
profiler oryaml
results? or are the timings save in axml
format? In theci-hpc
there is some general support for thejson
andyaml
formats, but you can write your ownartifact
module and simply put it in the correct folder. -
The most of the heavy lifting is already done in a parent class so adding a new collection module should be relatively easy.
-
-
Now to display the results, setup a visualization server.
What's new?
- now supporting multiple repositories within single project
- speed up testing process by using multiple cores on a computing node
- easily run ci-hpc on a previous commits by using
commit-browser
module - automatically determine which tests to run based on the previous results
- webhook support, automatically start
ci-chp
upon new commit
What's to come?
- run extra tests when suspecting significant performance change
- create web visualisation configuration from analyzing records in database
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file cihpc-0.2.0.tar.gz
.
File metadata
- Download URL: cihpc-0.2.0.tar.gz
- Upload date:
- Size: 67.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c78d23cc7fac3d6669f095c0e42f4dbe3d2e7aa4fafa566937a3dafc61873b25 |
|
MD5 | 812e7e0b6bcac4686d96baf25db23afa |
|
BLAKE2b-256 | 5f6d2087f348b81f988a79fd1dbb2cc4dc2b06fbdd020630f95f1fab8ac62af4 |