Skip to content

Commit 52b2751

Browse files
committed
Increment ACN DinkLink version due to need for transformer_options in prepare_current_timestep function
1 parent b572c40 commit 52b2751

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adv_control/sampling.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@
2020
from .dinklink import get_dinklink
2121
from .utils import torch_dfs, WrapperConsts
2222

23+
CURRENT_WRAPPER_VERSION = 10001
2324

2425
def prepare_dinklink_acn_wrapper():
2526
# expose acn_sampler_sample_wrapper
2627
d = get_dinklink()
2728
link_acn = d.setdefault(WrapperConsts.ACN, {})
28-
link_acn[WrapperConsts.VERSION] = 10000
29+
link_acn[WrapperConsts.VERSION] = CURRENT_WRAPPER_VERSION
2930
link_acn[WrapperConsts.ACN_CREATE_SAMPLER_SAMPLE_WRAPPER] = (comfy.patcher_extension.WrappersMP.OUTER_SAMPLE,
3031
WrapperConsts.ACN_OUTER_SAMPLE_WRAPPER_KEY,
3132
acn_outer_sample_wrapper)

0 commit comments

Comments
 (0)