From d009d451c29d03969556813d48bb24efb1d666f1 Mon Sep 17 00:00:00 2001 From: Tran Thanh Luan <92072154+toilaluan@users.noreply.github.com> Date: Fri, 5 Dec 2025 14:26:25 +0700 Subject: [PATCH] Update src/diffusers/hooks/taylorseer_cache.py Co-authored-by: Dhruv Nair --- src/diffusers/hooks/taylorseer_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/diffusers/hooks/taylorseer_cache.py b/src/diffusers/hooks/taylorseer_cache.py index 969f43f70e..3c5a606bd2 100644 --- a/src/diffusers/hooks/taylorseer_cache.py +++ b/src/diffusers/hooks/taylorseer_cache.py @@ -67,7 +67,7 @@ class TaylorSeerCacheConfig: Notes: - Patterns are matched using `re.fullmatch` on the module name. - - If `inactive_identifiers` or `active_identifiers` are provided, only matching modules are hooked. + - If `skip_predict_identifiers` or `cache_identifiers` are provided, only matching modules are hooked. - If neither is provided, all attention-like modules are hooked by default. - Example of inactive and active usage: ```