diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-05-10 04:26:31 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-05-10 04:26:42 +0000 |
commit | f5ea1e9d928e0d45b3ebcd8ddd1cacbc6a96e184 (patch) | |
tree | c25b44e21a9f4023b9f0688c43bf17161e2b5cf1 | |
parent | d50b95b5a32b917ded123891dce3c8a018fca064 (diff) | |
download | stable-diffusion-webui-gfx803-f5ea1e9d928e0d45b3ebcd8ddd1cacbc6a96e184.tar.gz stable-diffusion-webui-gfx803-f5ea1e9d928e0d45b3ebcd8ddd1cacbc6a96e184.tar.bz2 stable-diffusion-webui-gfx803-f5ea1e9d928e0d45b3ebcd8ddd1cacbc6a96e184.zip |
bump torch version
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | launch.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 63a6093d..cf3fef3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ ### Minor:
* gradio bumped to 3.29.0
+ * torch bumped to 2.0.1
* --subpath option for gradio for use with reverse proxy
* linux/OSX: use existing virtualenv if already active (the VIRTUAL_ENV environment variable)
* possible frontend optimization: do not apply localizations if there are none
@@ -23,7 +24,6 @@ * allow directories starting with . to still list their models for lora, checkpoints, etc
* put infotext options into their own category in settings tab
* do not show licenses page when user selects Show all pages in settings
- *
### Extensions:
* Tooltip localization support
@@ -237,7 +237,7 @@ def run_extensions_installers(settings_file): def prepare_environment():
- torch_command = os.environ.get('TORCH_COMMAND', "pip install torch==2.0.0 torchvision==0.15.1 --extra-index-url https://download.pytorch.org/whl/cu118")
+ torch_command = os.environ.get('TORCH_COMMAND', "pip install torch==2.0.1 torchvision==0.15.2 --extra-index-url https://download.pytorch.org/whl/cu118")
requirements_file = os.environ.get('REQS_FILE', "requirements_versions.txt")
xformers_package = os.environ.get('XFORMERS_PACKAGE', 'xformers==0.0.17')
|