2021-04-09 10:02:12 +03:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# Licensed under the MIT license.
|
|
|
|
|
2021-04-14 13:07:06 +03:00
|
|
|
"""Micro benchmark example for sharding-matmul with pytorch.
|
2021-04-09 10:02:12 +03:00
|
|
|
|
|
|
|
Commands to run:
|
|
|
|
python3 -m torch.distributed.launch --nproc_per_node=8 examples/benchmarks/sharding_matmul.py
|
|
|
|
"""
|
|
|
|
|
|
|
|
from superbench.benchmarks import Framework, BenchmarkRegistry
|
|
|
|
from superbench.common.utils import logger
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
context = BenchmarkRegistry.create_benchmark_context(
|
2021-04-12 17:02:12 +03:00
|
|
|
'sharding-matmul', parameters='--num_steps 20', framework=Framework.PYTORCH
|
2021-04-09 10:02:12 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
benchmark = BenchmarkRegistry.launch_benchmark(context)
|
|
|
|
if benchmark:
|
|
|
|
logger.info(
|
|
|
|
'benchmark: {}, return code: {}, result: {}'.format(
|
|
|
|
benchmark.name, benchmark.return_code, benchmark.result
|
|
|
|
)
|
|
|
|
)
|