diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-08 17:02:18 +0300 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-08 17:02:18 +0300 |
commit | dc1117233ef8f9b25ff1ac40b158f20b70ba2fcb (patch) | |
tree | d7b54aa4cd8216984bc842323cc880baff3065c3 /launch.py | |
parent | 7ff1170a2e11b6f00f587407326db0b9f8f51adf (diff) |
simplify xfrmers options: --xformers to enable and that's it
Diffstat (limited to 'launch.py')
-rw-r--r-- | launch.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ def extract_arg(args, name): args, skip_torch_cuda_test = extract_arg(args, '--skip-torch-cuda-test')
-args, xformers = extract_arg(args, '--xformers')
+xformers = '--xformers' in args
def repo_dir(name):
|