23 строки
773 B
Python
23 строки
773 B
Python
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT license.
|
|
|
|
"""Micro benchmark example for distributed inference with pytorch.
|
|
|
|
Commands to run:
|
|
python3 -m torch.distributed.launch --nproc_per_node=8 examples/benchmarks/dist_inference.py
|
|
"""
|
|
|
|
from superbench.benchmarks import Framework, BenchmarkRegistry
|
|
from superbench.common.utils import logger
|
|
|
|
if __name__ == '__main__':
|
|
context = BenchmarkRegistry.create_benchmark_context('dist-inference', parameters='', framework=Framework.PYTORCH)
|
|
|
|
benchmark = BenchmarkRegistry.launch_benchmark(context)
|
|
if benchmark:
|
|
logger.info(
|
|
'benchmark: {}, return code: {}, result: {}'.format(
|
|
benchmark.name, benchmark.return_code, benchmark.result
|
|
)
|
|
)
|