From f0d01478ec14fc146e08f17c4ffa651f6950d5fb Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Mon, 20 Apr 2026 20:58:20 +0200 Subject: [PATCH] =?UTF-8?q?chore(D8):=20derive=20Debug=20on=20MetaQNetwork?= =?UTF-8?q?/SimpleLcg=20=E2=80=94=20fixes=20missing=5Fdebug=5Fimplementati?= =?UTF-8?q?ons=20lint?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/ml/src/cuda_pipeline/meta_q_network.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/ml/src/cuda_pipeline/meta_q_network.rs b/crates/ml/src/cuda_pipeline/meta_q_network.rs index 325d3d022..754d4eacc 100644 --- a/crates/ml/src/cuda_pipeline/meta_q_network.rs +++ b/crates/ml/src/cuda_pipeline/meta_q_network.rs @@ -37,6 +37,7 @@ impl MetaQInput { } /// Small MLP on host (CPU). n_params ≈ 7×32 + 32×16 + 16×1 + biases = ~800. +#[derive(Debug)] pub struct MetaQNetwork { w1: Vec, b1: Vec, w2: Vec, b2: Vec, @@ -187,6 +188,7 @@ impl Default for MetaQNetwork { } /// Deterministic LCG for reproducible weight init and minibatch sampling. +#[derive(Debug)] struct SimpleLcg { state: u64 } impl SimpleLcg {