diff options
author | Titus von Koeller <titus@vonkoeller.com> | 2022-07-27 21:16:04 -0700 |
---|---|---|
committer | Titus von Koeller <titus@vonkoeller.com> | 2022-07-27 21:16:04 -0700 |
commit | 5d90b38c4d280272106ad656808b35ff75bd46a0 (patch) | |
tree | 993fc302f0ea6890ed46dcc9c3de28815721d9f8 /bitsandbytes/debug_cli.py | |
parent | bd515328d70f344f935075f359c5aefc616878d5 (diff) |
adding CLI tool for CUDA install debugging - intermediate commit
Diffstat (limited to 'bitsandbytes/debug_cli.py')
-rw-r--r-- | bitsandbytes/debug_cli.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/bitsandbytes/debug_cli.py b/bitsandbytes/debug_cli.py new file mode 100644 index 0000000..88307a6 --- /dev/null +++ b/bitsandbytes/debug_cli.py @@ -0,0 +1,27 @@ +import typer + + +cli = typer.Typer() + + +@cli.callback() +def callback(): + """ + Awesome Portal Gun + """ + + +@cli.command() +def shoot(): + """ + Shoot the portal gun + """ + typer.echo("Shooting portal gun") + + +@cli.command() +def load(): + """ + Load the portal gun + """ + typer.echo("Loading portal gun") |