mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-09-07 03:52:01 +00:00
[cli] added micro benchmarking for tp (#789)
* [CLI] add CLI launcher
* Revert "[CLI] add CLI launcher"
This reverts commit df7e6506d4
.
* [CLI]add cli benchmark feature
* fix CodeFactor issues.
* refactor the module structure.
This commit is contained in:
@@ -1,15 +1,38 @@
|
||||
import click
|
||||
from colossalai.cli.launcher.run import main as col_launch
|
||||
from colossalai.cli.benchmark.utils import BATCH_SIZE, SEQ_LENGTH, HIDDEN_DIM, ITER_TIMES
|
||||
from colossalai.cli.benchmark.run import launch as col_benchmark
|
||||
|
||||
class Arguments():
|
||||
def __init__(self, dict):
|
||||
for k, v in dict.items():
|
||||
def __init__(self, arg_dict):
|
||||
for k, v in arg_dict.items():
|
||||
self.__dict__[k] = v
|
||||
|
||||
@click.group()
|
||||
def cli():
|
||||
pass
|
||||
|
||||
@click.command()
|
||||
@click.option("--num_gpus",
|
||||
type=int,
|
||||
default=-1)
|
||||
@click.option("--bs",
|
||||
type=int,
|
||||
default=BATCH_SIZE)
|
||||
@click.option("--seq_len",
|
||||
type=int,
|
||||
default=SEQ_LENGTH)
|
||||
@click.option("--hid_dim",
|
||||
type=int,
|
||||
default=HIDDEN_DIM)
|
||||
@click.option("--num_steps",
|
||||
type=int,
|
||||
default=ITER_TIMES)
|
||||
def benchmark(num_gpus, bs, seq_len, hid_dim, num_steps):
|
||||
args_dict = locals()
|
||||
args = Arguments(args_dict)
|
||||
col_benchmark(args)
|
||||
|
||||
@click.command()
|
||||
@click.option("--hostfile",
|
||||
type=str,
|
||||
@@ -49,6 +72,7 @@ def launch(hostfile, num_nodes, num_gpus, include, exclude, master_addr, master_
|
||||
col_launch(args)
|
||||
|
||||
cli.add_command(launch)
|
||||
cli.add_command(benchmark)
|
||||
|
||||
if __name__ == '__main__':
|
||||
cli()
|
||||
|
Reference in New Issue
Block a user