main.py
Compute time and memory consumption.
Linting
$ pylint src/
Usage
You can go on:
https://github.com/FilouPlains/perfassess
To check how to install this module. After, you can launch the module as a
command line. To know what is possible, launch:
$ perfassess --help
Else, you are also able to import the module object as followed:
from perfassess.class_performance_assessor import PerformanceAssessor
from perfassess.testor import testor
assessor: PerformanceAssessor = PerformanceAssessor(
main=testor,
n_field=1,
value=[0] * 1000
)
assessor.launch_profiling()
assessor.plot(path="output_directory/")
With "output_directory/" being the output directory of your choice
main()
Main function.
Source code in src/perfassess/main.py
52 53 54 55 56 57 58 59 60 61 62 63 64 |
|