Skip to content

taps.run.main

parse_args_to_config()

parse_args_to_config(
    argv: Sequence[str],
) -> BenchmarkConfig

Parse sequence of string arguments into a config.

Parameters:

  • argv (Sequence[str]) –

    Sequence of string arguments.

Returns:

Source code in taps/run/main.py
def parse_args_to_config(argv: Sequence[str]) -> BenchmarkConfig:
    """Parse sequence of string arguments into a config.

    Args:
        argv: Sequence of string arguments.

    Returns:
        Configuration.
    """
    parser = argparse.ArgumentParser(
        description='Task Performance Suite.',
        prog='python -m taps.run',
        formatter_class=argparse.ArgumentDefaultsHelpFormatter,
    )

    subparsers = parser.add_subparsers(
        title='Applications',
        dest='name',
        required=True,
        help='application to execute',
    )

    apps = collections.OrderedDict(sorted(get_registered_apps().items()))
    for name, config in apps.items():
        subparser = subparsers.add_parser(
            name,
            formatter_class=argparse.ArgumentDefaultsHelpFormatter,
        )
        RunConfig.add_argument_group(subparser, argv=argv, required=True)
        ExecutorChoicesConfig.add_argument_group(
            subparser,
            argv=argv,
            required=True,
        )
        DataTransformerChoicesConfig.add_argument_group(
            subparser,
            argv=argv,
            required=False,
        )
        FilterConfig.add_argument_group(
            subparser,
            argv=argv,
            required=True,
        )
        config.add_argument_group(subparser, argv=argv, required=True)

    args = parser.parse_args(argv)
    options = vars(args)

    app_name = options['name']
    executor_config = get_executor_config(**options)
    transformer_config = get_transformer_config(**options)
    filter_config = FilterConfig(**options)
    run_config = RunConfig(**options)
    app_config = apps[app_name](**options)

    return BenchmarkConfig(
        name=app_name,
        timestamp=datetime.now(),
        executor_name=options['executor'],
        app=app_config,
        executor=executor_config,
        transformer=transformer_config,
        filter=filter_config,
        run=run_config,
    )

run()

run(config: BenchmarkConfig) -> None

Run an application using the configuration.

This function changes the current working directory to config.run.run_dir so that all paths are relative to the current working directory.

Source code in taps/run/main.py
@_cwd_run_dir
def run(config: BenchmarkConfig) -> None:
    """Run an application using the configuration.

    This function changes the current working directory to
    `config.run.run_dir` so that all paths are relative to the current
    working directory.
    """
    start = time.perf_counter()

    cwd = pathlib.Path.cwd().resolve()

    logger.log(RUN_LOG_LEVEL, f'Starting app (name={config.name})')
    logger.log(RUN_LOG_LEVEL, config)
    logger.log(RUN_LOG_LEVEL, f'Runtime directory: {cwd}')

    config_json = config.model_dump_json(exclude={'timestamp'}, indent=4)
    with open('config.json', 'w') as f:
        f.write(config_json)

    app = config.app.create_app()
    executor = config.executor.get_executor()
    data_transformer = config.transformer.get_transformer()
    data_filter = config.filter.get_filter()
    record_logger = JSONRecordLogger(config.run.task_record_file_name)
    engine = AppEngine(
        executor,
        data_transformer=data_transformer,
        data_filter=data_filter,
        record_logger=record_logger,
    )

    with contextlib.closing(app), engine:
        app.run(engine=engine, run_dir=cwd)

    runtime = time.perf_counter() - start
    logger.log(
        RUN_LOG_LEVEL,
        f'Finished app (name={config.name}, '
        f'runtime={runtime:.2f}s, tasks={engine.tasks_executed})',
    )