From 123a9d2f91785562eef2914cb3789471f5c46899 Mon Sep 17 00:00:00 2001 From: Michael Cahill Date: Sat, 7 Mar 2026 18:34:47 -0800 Subject: [PATCH] ci(M01): add k_diffusion.utils stub Made-with: Cursor --- scripts/dev/create_stub_repos.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/dev/create_stub_repos.py b/scripts/dev/create_stub_repos.py index 528159098..a1e3cfe45 100644 --- a/scripts/dev/create_stub_repos.py +++ b/scripts/dev/create_stub_repos.py @@ -107,9 +107,10 @@ def main() -> None: "# stub\n", ) - # k-diffusion: k_diffusion.sampling (sd_schedulers, sd_samplers_common) + # k-diffusion: k_diffusion.sampling, utils (sd_schedulers, sd_samplers_lcm) kd = "k-diffusion" touch(os.path.join(REPOS, kd, "k_diffusion", "__init__.py")) + touch(os.path.join(REPOS, kd, "k_diffusion", "utils.py"), "# stub\n") kd_sampling = ( "import torch as _torch\n" "torch = _torch\n"