mirror of
https://github.com/lllyasviel/stable-diffusion-webui-forge.git
synced 2026-02-07 16:39:57 +00:00
8 lines
148 B
Python
8 lines
148 B
Python
import argparse
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument("--cuda-stream", action="store_true")
|
|
|
|
args = parser.parse_known_args()[0]
|