diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-27 10:08:00 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-27 10:08:00 +0000 |
commit | 9beb794e0b0dc1a0f9e89d8e38bd789a8c608397 (patch) | |
tree | cf04e3201121c396887eacbb8817d0336aac380a /modules/devices.py | |
parent | 6f31d2210c189f8db118e6f95add7ba2a64f0238 (diff) | |
download | stable-diffusion-webui-gfx803-9beb794e0b0dc1a0f9e89d8e38bd789a8c608397.tar.gz stable-diffusion-webui-gfx803-9beb794e0b0dc1a0f9e89d8e38bd789a8c608397.tar.bz2 stable-diffusion-webui-gfx803-9beb794e0b0dc1a0f9e89d8e38bd789a8c608397.zip |
clarify the option to disable NaN check.
Diffstat (limited to 'modules/devices.py')
-rw-r--r-- | modules/devices.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/devices.py b/modules/devices.py index 2d5f797a..4687944e 100644 --- a/modules/devices.py +++ b/modules/devices.py @@ -143,6 +143,8 @@ def test_for_nans(x, where): else: message = "A tensor with all NaNs was produced." + message += " Use --disable-nan-check commandline argument to disable this check." + raise NansException(message) |