Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
c250d2a0
Commit
c250d2a0
authored
Nov 04, 2022
by
AUTOMATIC1111
Committed by
GitHub
Nov 04, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4182 from macrosoft/process_one
Process one
parents
1b9faaa1
de64146a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
modules/processing.py
modules/processing.py
+3
-0
modules/scripts.py
modules/scripts.py
+16
-0
No files found.
modules/processing.py
View file @
c250d2a0
...
...
@@ -501,6 +501,9 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed:
if
len
(
prompts
)
==
0
:
break
if
p
.
scripts
is
not
None
:
p
.
scripts
.
process_one
(
p
,
n
)
with
devices
.
autocast
():
uc
=
prompt_parser
.
get_learned_conditioning
(
shared
.
sd_model
,
len
(
prompts
)
*
[
p
.
negative_prompt
],
p
.
steps
)
c
=
prompt_parser
.
get_multicond_learned_conditioning
(
shared
.
sd_model
,
prompts
,
p
.
steps
)
...
...
modules/scripts.py
View file @
c250d2a0
...
...
@@ -73,6 +73,13 @@ class Script:
pass
def
process_one
(
self
,
p
,
n
,
*
args
):
"""
Same as process(), but called for every iteration
"""
pass
def
postprocess
(
self
,
p
,
processed
,
*
args
):
"""
This function is called after processing ends for AlwaysVisible scripts.
...
...
@@ -296,6 +303,15 @@ class ScriptRunner:
print
(
f
"Error running process: {script.filename}"
,
file
=
sys
.
stderr
)
print
(
traceback
.
format_exc
(),
file
=
sys
.
stderr
)
def
process_one
(
self
,
p
,
n
):
for
script
in
self
.
alwayson_scripts
:
try
:
script_args
=
p
.
script_args
[
script
.
args_from
:
script
.
args_to
]
script
.
process_one
(
p
,
n
,
*
script_args
)
except
Exception
:
print
(
f
"Error running process_one: {script.filename}"
,
file
=
sys
.
stderr
)
print
(
traceback
.
format_exc
(),
file
=
sys
.
stderr
)
def
postprocess
(
self
,
p
,
processed
):
for
script
in
self
.
alwayson_scripts
:
try
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment