@@ -33,7 +33,6 @@ struct SyncStateHandlerSet {
3333/// 2. Shape-based heuristic — dynamic dim → kvCache, static + "cache" in name → slidingCache, else → fixed
3434/// 3. Legacy (2 states) — both kvCache, no warning
3535enum StateHandlerFactory {
36-
3736 /// Classify states using metadata or heuristic fallback.
3837 static func classifyStates(
3938 descriptor: InferenceFunctionDescriptor ,
@@ -67,11 +66,13 @@ enum StateHandlerFactory {
6766 guard case . ndArray( let desc) = descriptor. stateDescriptor ( of: name) else { continue }
6867 let shapeStr = desc. shape. map { $0 < 0 ? " ? " : " \( $0) " } . joined ( separator: " × " )
6968 let growth = desc. shape. contains ( where: { $0 < 0 } ) ? " GROWING " : " FIXED "
70- CLILogger . log ( " \( name) : \( growth) \( kind. rawValue) ( \( shapeStr) ) " ,
71- component: " StateHandlerFactory " )
69+ CLILogger . log (
70+ " \( name) : \( growth) \( kind. rawValue) ( \( shapeStr) ) " ,
71+ component: " StateHandlerFactory " )
7272 }
73- CLILogger . log ( " Add \" states \" to metadata.json for explicit control. " ,
74- component: " StateHandlerFactory " )
73+ CLILogger . log (
74+ " Add \" states \" to metadata.json for explicit control. " ,
75+ component: " StateHandlerFactory " )
7576 }
7677 if !verbose && names. count > 2 {
7778 CLILogger . log (
0 commit comments