Skip to content

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
def main():
    """Main function.
    """
    __argument = parse_argument(version=__version__)

    assessor: PerformanceAssessor = PerformanceAssessor(
        main=__argument.function,
        n_field=__argument.n_field,
        **__argument.argument
    )

    assessor.launch_profiling()
    assessor.plot(path=__argument.output)