Skip to content

plugins.aea-cli-benchmark.aea_cli_benchmark.core

This module contains the implementation of benchmark cli command.

benchmark

@click.group()
@click.pass_context
def benchmark(click_context: click.Context) -> None

Run one of performance benchmark.

run

@click.command(name="run")
@click.argument(
    "file",
    metavar="FILE",
    type=click.Path(exists=True, file_okay=True, dir_okay=False,
                    readable=True),
    required=False,
)
def run(file: Optional[str])

Run benchmarks.

make_config

@click.command(name="make-config")
@click.argument(
    "file",
    metavar="FILE",
    type=click.Path(file_okay=True, dir_okay=False),
    required=False,
)
def make_config(file: Optional[str])

Make an example config.