clean some adapter system things
parent
d37208c33a
commit
86bd484111
|
|
@ -195,7 +195,7 @@ class DistributedScript(scripts.Script):
|
||||||
if not self.enabled(p):
|
if not self.enabled(p):
|
||||||
return
|
return
|
||||||
|
|
||||||
active_adapters = []
|
self.active_adapters = []
|
||||||
if p.all_prompts is None:
|
if p.all_prompts is None:
|
||||||
p.all_prompts = []
|
p.all_prompts = []
|
||||||
if p.all_negative_prompts is None:
|
if p.all_negative_prompts is None:
|
||||||
|
|
@ -219,10 +219,11 @@ class DistributedScript(scripts.Script):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
title = script.title()
|
title = script.title()
|
||||||
|
# logger.debug(f"processing script '{title}'")
|
||||||
found_adapter = False
|
found_adapter = False
|
||||||
for adapter in adapters:
|
for adapter in adapters:
|
||||||
if adapter.title.lower() in title.lower():
|
if adapter.title.lower() in title.lower():
|
||||||
active_adapters.append(adapter)
|
self.active_adapters.append(adapter)
|
||||||
cede = adapter.early(p, self.world, script)
|
cede = adapter.early(p, self.world, script)
|
||||||
if cede:
|
if cede:
|
||||||
logger.debug(f"adapter for '{adapter.title}' cedes control back to wui")
|
logger.debug(f"adapter for '{adapter.title}' cedes control back to wui")
|
||||||
|
|
@ -232,7 +233,7 @@ class DistributedScript(scripts.Script):
|
||||||
|
|
||||||
if not found_adapter: # shoehorn scripts which we don't explicitly support
|
if not found_adapter: # shoehorn scripts which we don't explicitly support
|
||||||
generic_adapter.early(p, self.world, script)
|
generic_adapter.early(p, self.world, script)
|
||||||
logger.debug(f"activated {len(active_adapters)} adapters: {[a.title for a in active_adapters]}")
|
logger.debug(f"activated {len(self.active_adapters)} adapters: {[a.title for a in self.active_adapters]}")
|
||||||
|
|
||||||
# generate seed early for master so that we can calculate the successive seeds for each slave
|
# generate seed early for master so that we can calculate the successive seeds for each slave
|
||||||
fix_seed(p)
|
fix_seed(p)
|
||||||
|
|
@ -254,7 +255,7 @@ class DistributedScript(scripts.Script):
|
||||||
}
|
}
|
||||||
|
|
||||||
self.world.optimize_jobs(payload)
|
self.world.optimize_jobs(payload)
|
||||||
for adapter in active_adapters:
|
for adapter in self.active_adapters:
|
||||||
adapter.late(p, self.world, payload, option_payload)
|
adapter.late(p, self.world, payload, option_payload)
|
||||||
generic_adapter.late(p, self.world, payload, option_payload)
|
generic_adapter.late(p, self.world, payload, option_payload)
|
||||||
|
|
||||||
|
|
@ -351,6 +352,8 @@ class DistributedScript(scripts.Script):
|
||||||
worker.response = None
|
worker.response = None
|
||||||
# restore process_images_inner if it was monkey-patched
|
# restore process_images_inner if it was monkey-patched
|
||||||
processing.process_images_inner = self.original_process_images_inner
|
processing.process_images_inner = self.original_process_images_inner
|
||||||
|
for adapter in self.active_adapters:
|
||||||
|
adapter.cleanup()
|
||||||
# save any dangling state to prevent load_config in next iteration overwriting it
|
# save any dangling state to prevent load_config in next iteration overwriting it
|
||||||
self.world.save_config()
|
self.world.save_config()
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
from PIL.Image import Image
|
from PIL.Image import Image
|
||||||
from typing_extensions import override, Tuple
|
from typing_extensions import override, Tuple, List
|
||||||
from scripts.spartan.shared import logger
|
from scripts.spartan.shared import logger
|
||||||
from scripts.spartan.control_net import pack_control_net
|
from scripts.spartan.control_net import pack_control_net
|
||||||
|
from modules.scripts import script_callbacks
|
||||||
|
|
||||||
class Adapter(object):
|
class Adapter(object):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
@ -21,28 +22,36 @@ class Adapter(object):
|
||||||
def script_args(self, p) -> Tuple:
|
def script_args(self, p) -> Tuple:
|
||||||
return p.script_args[self.script.args_from:self.script.args_to]
|
return p.script_args[self.script.args_from:self.script.args_to]
|
||||||
|
|
||||||
|
def cleanup(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
class GenericAdapter(Adapter):
|
||||||
|
def __init__(self, *args):
|
||||||
|
super().__init__()
|
||||||
|
self.packed_script_args = [] # list of api formatted per-script argument objects
|
||||||
|
# { "script_name": { "args": ["value1", "value2", ...] }
|
||||||
|
|
||||||
|
def early(self, p, world, script, *args):
|
||||||
|
title = script.title()
|
||||||
|
# https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111/issues/12#issuecomment-1480382514
|
||||||
|
args_script_pack = {title: {"args": []}}
|
||||||
|
for arg in p.script_args[script.args_from:script.args_to]:
|
||||||
|
args_script_pack[title]["args"].append(arg)
|
||||||
|
self.packed_script_args.append(args_script_pack)
|
||||||
|
|
||||||
|
def late(self, p, world, payload, *args):
|
||||||
|
for packed in self.packed_script_args:
|
||||||
|
payload['alwayson_scripts'].update(packed)
|
||||||
|
|
||||||
class DynamicPromptsAdapter(Adapter):
|
class DynamicPromptsAdapter(Adapter):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.title = "Dynamic Prompts"
|
self.title = "Dynamic Prompts"
|
||||||
|
|
||||||
def early(self, p, world, script, *args):
|
def early(self, p, world, script, *args):
|
||||||
|
# dynamic will run twice, but because of load order our call overwrites the original
|
||||||
super().early(p, world, script)
|
super().early(p, world, script)
|
||||||
|
|
||||||
# dynamic will run twice, but because of load order our call overwrites the original
|
|
||||||
# logger.debug("finding callback")
|
|
||||||
# script_process_cbs = p.scripts.callback_map['script_process'][1]
|
|
||||||
|
|
||||||
# for i, callback in enumerate(script_process_cbs):
|
|
||||||
# if callback.callback.name == self.title.lower():
|
|
||||||
# logger.debug(f"found callback")
|
|
||||||
|
|
||||||
# # prevent double exec
|
|
||||||
# script_process_cbs.remove(callback)
|
|
||||||
# else:
|
|
||||||
# logger.debug(f"already hooked dynamic prompts")
|
|
||||||
|
|
||||||
# right before payload is cloned into a seperate instance for each job
|
|
||||||
def late(self, p, world, payload, *args):
|
def late(self, p, world, payload, *args):
|
||||||
|
|
||||||
# dynamic clobbers the actual p even if we pass a different object
|
# dynamic clobbers the actual p even if we pass a different object
|
||||||
|
|
@ -97,35 +106,13 @@ class ADetailerAdapter(Adapter):
|
||||||
def late(self, p, world, payload, *args):
|
def late(self, p, world, payload, *args):
|
||||||
payload['_ad_orig'] = None # unserializable
|
payload['_ad_orig'] = None # unserializable
|
||||||
|
|
||||||
|
class MultiDiffusionAdapter(Adapter):
|
||||||
class GenericAdapter(Adapter):
|
|
||||||
def __init__(self, *args):
|
def __init__(self, *args):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.packed_script_args = [] # list of api formatted per-script argument objects
|
self.title = "Tiled Diffusion"
|
||||||
# { "script_name": { "args": ["value1", "value2", ...] }
|
|
||||||
|
|
||||||
def early(self, p, world, script, *args):
|
|
||||||
title = script.title()
|
|
||||||
# https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111/issues/12#issuecomment-1480382514
|
|
||||||
args_script_pack = {title: {"args": []}}
|
|
||||||
for arg in p.script_args[script.args_from:script.args_to]:
|
|
||||||
args_script_pack[title]["args"].append(arg)
|
|
||||||
self.packed_script_args.append(args_script_pack)
|
|
||||||
|
|
||||||
def late(self, p, world, payload, *args):
|
def late(self, p, world, payload, *args):
|
||||||
for packed in self.packed_script_args:
|
|
||||||
payload['alwayson_scripts'].update(packed)
|
|
||||||
|
|
||||||
|
|
||||||
if payload.get('init_images_original_md') is not None: # multidiffusion
|
if payload.get('init_images_original_md') is not None: # multidiffusion
|
||||||
payload['init_images_original_md'] = None
|
payload['init_images_original_md'] = None
|
||||||
|
|
||||||
# for key in payload:
|
adapters = [ControlNetAdapter(), ADetailerAdapter(), DynamicPromptsAdapter(), MultiDiffusionAdapter()]
|
||||||
# contains_dict = any(isinstance(payload[key], Image) for item in payload)
|
|
||||||
# if isinstance(payload[key], Image):
|
|
||||||
# logger.warning(f"will not serialize PIL image in key '{key}'")
|
|
||||||
# del payload[key]
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
adapters = [ControlNetAdapter(), ADetailerAdapter(), DynamicPromptsAdapter()]
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue