We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b572c40 commit 52b2751Copy full SHA for 52b2751
adv_control/sampling.py
@@ -20,12 +20,13 @@
20
from .dinklink import get_dinklink
21
from .utils import torch_dfs, WrapperConsts
22
23
+CURRENT_WRAPPER_VERSION = 10001
24
25
def prepare_dinklink_acn_wrapper():
26
# expose acn_sampler_sample_wrapper
27
d = get_dinklink()
28
link_acn = d.setdefault(WrapperConsts.ACN, {})
- link_acn[WrapperConsts.VERSION] = 10000
29
+ link_acn[WrapperConsts.VERSION] = CURRENT_WRAPPER_VERSION
30
link_acn[WrapperConsts.ACN_CREATE_SAMPLER_SAMPLE_WRAPPER] = (comfy.patcher_extension.WrappersMP.OUTER_SAMPLE,
31
WrapperConsts.ACN_OUTER_SAMPLE_WRAPPER_KEY,
32
acn_outer_sample_wrapper)
0 commit comments