From 011a6b3cf26553388e5a63a32997519fb9c42844 Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Thu, 21 May 2026 00:25:26 +0200 Subject: [PATCH] build(crt-train): register smoothness_lambda_controller.cu in build.rs --- crates/ml-alpha/build.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/ml-alpha/build.rs b/crates/ml-alpha/build.rs index 85183875e..605b09de7 100644 --- a/crates/ml-alpha/build.rs +++ b/crates/ml-alpha/build.rs @@ -22,9 +22,10 @@ const KERNELS: &[&str] = &[ "attention_pool", // Phase 3: single-Q learned content summary at CfC k=0 "reduce_axis0", // Phase B: cross-batch param-grad reducer "output_smoothness", // CRT.train: per-horizon adjacent-position prob-jitter penalty + "smoothness_lambda_controller", // CRT.train: ISV-driven λ controller anchored on h30 jitter ]; -// Cache bust v12 (2026-05-20): output_smoothness.cu added — CRT.train intervention A. +// Cache bust v13 (2026-05-21): smoothness_lambda_controller.cu added — ISV-driven λ. fn main() { println!("cargo:rerun-if-changed=build.rs");