ColossalAI/colossalai/cli/check/__init__.py

14 lines
395 B
Python
Raw Normal View History

2022-04-20 04:05:38 +00:00
import click
from .check_installation import check_installation
__all__ = ['check']
@click.command(help="Check if Colossal-AI is correct based on the given option")
@click.option('-i', '--installation', is_flag=True, help="Check if Colossal-AI is built correctly")
def check(installation):
if installation:
check_installation()
return
click.echo("No option is given")