oxibonsai-model 0.1.4

Qwen3-8B Transformer implementation for OxiBonsai 1-bit inference
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
//! Forward-mode automatic differentiation for 1D tensors.
//!
//! Provides a lightweight [`Tensor`] type that tracks shape and optional
//! gradients, together with a set of element-wise and reduction operations.
//! Manual gradient formulas live in the [`backward`] sub-module so that
//! a training loop can orchestrate its own backward pass without depending
//! on an external AD framework.
//!
//! # Design
//!
//! - Tensors store data as flat `Vec<f32>` in row-major order.
//! - Operations always produce *new* tensors; no aliasing occurs.
//! - Gradients are accumulated with [`Tensor::accumulate_grad`] and cleared
//!   with [`Tensor::zero_grad`].

// ─── Tensor ──────────────────────────────────────────────────────────────────

/// A value that tracks its gradient during the backward pass.
///
/// Data is stored flat (row-major). The `shape` field records the logical
/// dimensions; `data.len()` must equal `shape.iter().product()`.
#[derive(Debug, Clone)]
pub struct Tensor {
    /// Flat, row-major storage.
    pub data: Vec<f32>,
    /// Accumulated gradient (same shape as `data`). `None` until the first
    /// call to [`Tensor::accumulate_grad`] or [`Tensor::zero_grad`].
    pub grad: Option<Vec<f32>>,
    /// Whether this tensor participates in gradient computation.
    pub requires_grad: bool,
    shape: Vec<usize>,
}

impl Tensor {
    /// Create a new tensor from flat data and a shape.
    ///
    /// Panics (in debug) if `data.len() != shape.iter().product::<usize>()`.
    pub fn new(data: Vec<f32>, shape: Vec<usize>) -> Self {
        debug_assert_eq!(
            data.len(),
            shape.iter().product::<usize>(),
            "data length must match shape product"
        );
        Self {
            data,
            grad: None,
            requires_grad: false,
            shape,
        }
    }

    /// Enable gradient tracking for this tensor (builder pattern).
    pub fn requires_grad(mut self) -> Self {
        self.requires_grad = true;
        self
    }

    /// Create a zero-filled tensor with the given shape.
    pub fn zeros(shape: &[usize]) -> Self {
        let n = shape.iter().product();
        Self::new(vec![0.0f32; n], shape.to_vec())
    }

    /// Create a one-filled tensor with the given shape.
    pub fn ones(shape: &[usize]) -> Self {
        let n = shape.iter().product();
        Self::new(vec![1.0f32; n], shape.to_vec())
    }

    /// Create a scalar tensor (shape `[1]`) from a single value.
    pub fn from_scalar(v: f32) -> Self {
        Self::new(vec![v], vec![1])
    }

    /// Logical shape of the tensor.
    pub fn shape(&self) -> &[usize] {
        &self.shape
    }

    /// Total number of elements.
    pub fn numel(&self) -> usize {
        self.data.len()
    }

    /// Zero the accumulated gradient in-place.
    ///
    /// If no gradient buffer exists yet, one is allocated and filled with
    /// zeros.
    pub fn zero_grad(&mut self) {
        match self.grad.as_mut() {
            Some(g) => g.iter_mut().for_each(|x| *x = 0.0),
            None => self.grad = Some(vec![0.0f32; self.data.len()]),
        }
    }

    /// Accumulate `grad` into `self.grad` element-wise (`self.grad += grad`).
    ///
    /// Allocates the gradient buffer if it does not exist yet.
    ///
    /// # Panics
    ///
    /// Panics if `grad.len() != self.data.len()`.
    pub fn accumulate_grad(&mut self, grad: &[f32]) {
        assert_eq!(
            grad.len(),
            self.data.len(),
            "gradient length must match tensor length"
        );
        match self.grad.as_mut() {
            Some(g) => {
                for (dst, src) in g.iter_mut().zip(grad.iter()) {
                    *dst += src;
                }
            }
            None => {
                self.grad = Some(grad.to_vec());
            }
        }
    }

    /// Return a copy of this tensor with `requires_grad = false` and no
    /// gradient buffer — suitable for feeding into loss calculations that
    /// should not propagate further.
    pub fn detach(&self) -> Self {
        Self {
            data: self.data.clone(),
            grad: None,
            requires_grad: false,
            shape: self.shape.clone(),
        }
    }

    // ── Basic operations ─────────────────────────────────────────────────────

    /// Element-wise addition.  Shapes must match.
    pub fn add(&self, other: &Tensor) -> Tensor {
        assert_eq!(
            self.shape, other.shape,
            "add: shapes must match ({:?} vs {:?})",
            self.shape, other.shape
        );
        let data: Vec<f32> = self
            .data
            .iter()
            .zip(other.data.iter())
            .map(|(a, b)| a + b)
            .collect();
        Tensor::new(data, self.shape.clone())
    }

    /// Element-wise multiplication.  Shapes must match.
    pub fn mul(&self, other: &Tensor) -> Tensor {
        assert_eq!(
            self.shape, other.shape,
            "mul: shapes must match ({:?} vs {:?})",
            self.shape, other.shape
        );
        let data: Vec<f32> = self
            .data
            .iter()
            .zip(other.data.iter())
            .map(|(a, b)| a * b)
            .collect();
        Tensor::new(data, self.shape.clone())
    }

    /// Matrix multiplication: `self` (m×k) @ `other` (k×n) → (m×n).
    ///
    /// Both tensors are treated as flat row-major matrices.
    pub fn matmul(&self, other: &Tensor, m: usize, k: usize, n: usize) -> Tensor {
        assert_eq!(
            self.data.len(),
            m * k,
            "matmul: self must have m*k elements"
        );
        assert_eq!(
            other.data.len(),
            k * n,
            "matmul: other must have k*n elements"
        );
        let mut out = vec![0.0f32; m * n];
        for i in 0..m {
            for j in 0..n {
                let mut sum = 0.0f32;
                for l in 0..k {
                    sum += self.data[i * k + l] * other.data[l * n + j];
                }
                out[i * n + j] = sum;
            }
        }
        Tensor::new(out, vec![m, n])
    }

    /// Element-wise ReLU: `max(0, x)`.
    pub fn relu(&self) -> Tensor {
        let data: Vec<f32> = self.data.iter().map(|&x| x.max(0.0)).collect();
        Tensor::new(data, self.shape.clone())
    }

    /// Element-wise sigmoid: `1 / (1 + exp(-x))`.
    pub fn sigmoid(&self) -> Tensor {
        let data: Vec<f32> = self
            .data
            .iter()
            .map(|&x| 1.0 / (1.0 + (-x).exp()))
            .collect();
        Tensor::new(data, self.shape.clone())
    }

    /// Softmax along the last dimension.
    ///
    /// For a 1-D or flat tensor the entire tensor is treated as one
    /// probability distribution.
    pub fn softmax(&self) -> Tensor {
        // Determine the stride of the last axis.
        let last_dim = self.shape.last().copied().unwrap_or(self.data.len());
        let batch = self.data.len() / last_dim.max(1);
        let mut data = self.data.clone();
        for b in 0..batch {
            let start = b * last_dim;
            let slice = &mut data[start..start + last_dim];
            // Numerically stable: subtract max before exp.
            let max_val = slice.iter().cloned().fold(f32::NEG_INFINITY, f32::max);
            let mut sum = 0.0f32;
            for v in slice.iter_mut() {
                *v = (*v - max_val).exp();
                sum += *v;
            }
            if sum > 0.0 {
                for v in slice.iter_mut() {
                    *v /= sum;
                }
            }
        }
        Tensor::new(data, self.shape.clone())
    }

    /// Reduce to scalar mean.
    pub fn mean(&self) -> Tensor {
        let n = self.data.len() as f32;
        let m = self.data.iter().sum::<f32>() / n.max(1.0);
        Tensor::from_scalar(m)
    }

    /// Reduce to scalar sum.
    pub fn sum(&self) -> Tensor {
        let s = self.data.iter().sum::<f32>();
        Tensor::from_scalar(s)
    }

    /// Element-wise negation.
    pub fn neg(&self) -> Tensor {
        let data: Vec<f32> = self.data.iter().map(|&x| -x).collect();
        Tensor::new(data, self.shape.clone())
    }

    /// Element-wise natural logarithm.  Values ≤ 0 produce `-inf` / `NaN`
    /// as per IEEE 754; callers are responsible for ensuring positivity.
    pub fn log(&self) -> Tensor {
        let data: Vec<f32> = self.data.iter().map(|&x| x.ln()).collect();
        Tensor::new(data, self.shape.clone())
    }
}

// ─── Backward helpers ────────────────────────────────────────────────────────

/// Manual backward-pass gradient formulas for common operations.
///
/// These functions compute *input* gradients given the upstream gradient
/// (`grad_output`) and the saved forward-pass values. They do **not** update
/// any tensor in-place; callers should pass the result to
/// [`Tensor::accumulate_grad`].
pub mod backward {
    use super::Tensor;

    /// Gradient of `sum(x)` w.r.t. `x`: a constant `1` broadcast to every
    /// element.
    pub fn sum_backward(grad_output: f32, input: &Tensor) -> Vec<f32> {
        vec![grad_output; input.data.len()]
    }

    /// Gradient of `mean(x)` w.r.t. `x`: `1/n` broadcast to every element.
    pub fn mean_backward(grad_output: f32, input: &Tensor) -> Vec<f32> {
        let n = input.data.len() as f32;
        let scale = grad_output / n.max(1.0);
        vec![scale; input.data.len()]
    }

    /// Gradient of `ReLU(x)` w.r.t. `x`:
    /// `grad_output[i]` if `input[i] > 0`, otherwise `0`.
    pub fn relu_backward(grad_output: &[f32], input: &Tensor) -> Vec<f32> {
        input
            .data
            .iter()
            .zip(grad_output.iter())
            .map(|(&x, &g)| if x > 0.0 { g } else { 0.0 })
            .collect()
    }

    /// Gradient of `sigmoid(x)` w.r.t. `x`:
    /// `grad_output[i] * σ(x)[i] * (1 - σ(x)[i])`.
    ///
    /// `output` should be the *result* of the forward sigmoid call (already
    /// in (0, 1)), which avoids recomputing the expensive exp.
    pub fn sigmoid_backward(grad_output: &[f32], output: &Tensor) -> Vec<f32> {
        output
            .data
            .iter()
            .zip(grad_output.iter())
            .map(|(&s, &g)| g * s * (1.0 - s))
            .collect()
    }

    /// Gradients of a linear layer `y = x W + b`.
    ///
    /// - `grad_output`: upstream gradient `dL/dy`, shape `[m, n]`
    /// - `input`: activations `x`, shape `[m, k]`
    /// - `weights`: weight matrix `W`, shape `[k, n]` (row-major)
    ///
    /// Returns `(dL/dx, dL/dW, dL/db)` with shapes `[m,k]`, `[k,n]`, `[n]`.
    pub fn linear_backward(
        grad_output: &[f32],
        input: &[f32],
        weights: &[f32],
        m: usize,
        k: usize,
        n: usize,
    ) -> (Vec<f32>, Vec<f32>, Vec<f32>) {
        // dL/dx = grad_output @ W^T   →  shape [m, k]
        let mut dx = vec![0.0f32; m * k];
        for i in 0..m {
            for j in 0..k {
                let mut s = 0.0f32;
                for l in 0..n {
                    s += grad_output[i * n + l] * weights[j * n + l];
                }
                dx[i * k + j] = s;
            }
        }

        // dL/dW = x^T @ grad_output  →  shape [k, n]
        let mut dw = vec![0.0f32; k * n];
        for i in 0..k {
            for j in 0..n {
                let mut s = 0.0f32;
                for l in 0..m {
                    s += input[l * k + i] * grad_output[l * n + j];
                }
                dw[i * n + j] = s;
            }
        }

        // dL/db = sum over batch dim   →  shape [n]
        let mut db = vec![0.0f32; n];
        for i in 0..m {
            for j in 0..n {
                db[j] += grad_output[i * n + j];
            }
        }

        (dx, dw, db)
    }

    /// Combined softmax + NLL cross-entropy backward.
    ///
    /// For a single token with logits of shape `[vocab_size]` and a one-hot
    /// target `target_id`, the gradient of the cross-entropy loss w.r.t. the
    /// logits is simply `softmax(logits) - one_hot(target_id)`.
    pub fn cross_entropy_backward(logits: &[f32], target_id: u32) -> Vec<f32> {
        // Compute softmax.
        let max_val = logits.iter().cloned().fold(f32::NEG_INFINITY, f32::max);
        let mut probs: Vec<f32> = logits.iter().map(|&x| (x - max_val).exp()).collect();
        let sum: f32 = probs.iter().sum();
        let inv_sum = if sum > 0.0 { 1.0 / sum } else { 1.0 };
        for p in probs.iter_mut() {
            *p *= inv_sum;
        }
        // Subtract one-hot.
        let idx = target_id as usize;
        if idx < probs.len() {
            probs[idx] -= 1.0;
        }
        probs
    }
}

// ─── Loss functions ───────────────────────────────────────────────────────────

/// Cross-entropy loss for a single token prediction.
///
/// `loss = -log(softmax(logits)[target_id])`
pub fn cross_entropy_loss(logits: &[f32], target_id: u32) -> f32 {
    // Numerically stable softmax log-probability.
    let max_val = logits.iter().cloned().fold(f32::NEG_INFINITY, f32::max);
    let exps: Vec<f32> = logits.iter().map(|&x| (x - max_val).exp()).collect();
    let sum: f32 = exps.iter().sum();
    let idx = target_id as usize;
    if idx >= logits.len() || sum == 0.0 {
        return f32::INFINITY;
    }
    let log_prob = exps[idx].ln() - sum.ln();
    -log_prob
}

/// Perplexity over a sequence of `(logits, target_id)` pairs.
///
/// `perplexity = exp(mean(-log p(target_i)))`
pub fn sequence_perplexity(pairs: &[(Vec<f32>, u32)]) -> f32 {
    if pairs.is_empty() {
        return f32::INFINITY;
    }
    let avg_nll: f32 = pairs
        .iter()
        .map(|(logits, target)| cross_entropy_loss(logits, *target))
        .sum::<f32>()
        / pairs.len() as f32;
    avg_nll.exp()
}

// ─── Tests ────────────────────────────────────────────────────────────────────

#[cfg(test)]
mod tests {
    use super::*;

    const EPS: f32 = 1e-5;

    fn approx_eq(a: f32, b: f32) -> bool {
        (a - b).abs() < EPS
    }

    #[test]
    fn test_tensor_add() {
        let a = Tensor::new(vec![1.0, 2.0, 3.0], vec![3]);
        let b = Tensor::new(vec![4.0, 5.0, 6.0], vec![3]);
        let c = a.add(&b);
        assert_eq!(c.data, vec![5.0, 7.0, 9.0]);
    }

    #[test]
    fn test_tensor_mul() {
        let a = Tensor::new(vec![1.0, 2.0, 3.0], vec![3]);
        let b = Tensor::new(vec![2.0, 3.0, 4.0], vec![3]);
        let c = a.mul(&b);
        assert_eq!(c.data, vec![2.0, 6.0, 12.0]);
    }

    #[test]
    fn test_tensor_matmul() {
        // 2×3 @ 3×2 = 2×2
        // [[1,2,3],[4,5,6]] @ [[7,8],[9,10],[11,12]]
        let a = Tensor::new(vec![1.0, 2.0, 3.0, 4.0, 5.0, 6.0], vec![2, 3]);
        let b = Tensor::new(vec![7.0, 8.0, 9.0, 10.0, 11.0, 12.0], vec![3, 2]);
        let c = a.matmul(&b, 2, 3, 2);
        // Row 0: [1*7+2*9+3*11, 1*8+2*10+3*12] = [58, 64]
        // Row 1: [4*7+5*9+6*11, 4*8+5*10+6*12] = [139, 154]
        assert!(approx_eq(c.data[0], 58.0));
        assert!(approx_eq(c.data[1], 64.0));
        assert!(approx_eq(c.data[2], 139.0));
        assert!(approx_eq(c.data[3], 154.0));
        assert_eq!(c.shape(), &[2, 2]);
    }

    #[test]
    fn test_tensor_relu_forward() {
        let t = Tensor::new(vec![-2.0, -0.5, 0.0, 0.5, 2.0], vec![5]);
        let r = t.relu();
        assert_eq!(r.data, vec![0.0, 0.0, 0.0, 0.5, 2.0]);
    }

    #[test]
    fn test_tensor_sigmoid_forward() {
        let t = Tensor::from_scalar(0.0);
        let s = t.sigmoid();
        assert!(approx_eq(s.data[0], 0.5), "sigmoid(0) must be 0.5");

        let large = Tensor::from_scalar(100.0);
        let sl = large.sigmoid();
        assert!(sl.data[0] > 0.99, "sigmoid(100) must be close to 1");
    }

    #[test]
    fn test_tensor_softmax_sums_to_one() {
        let t = Tensor::new(vec![1.0, 2.0, 3.0, 4.0], vec![4]);
        let s = t.softmax();
        let total: f32 = s.data.iter().sum();
        assert!(approx_eq(total, 1.0), "softmax must sum to 1, got {total}");
        for &p in &s.data {
            assert!(
                (0.0..=1.0).contains(&p),
                "each probability must be in [0,1]"
            );
        }
    }

    #[test]
    fn test_tensor_mean_scalar() {
        let t = Tensor::new(vec![1.0, 2.0, 3.0, 4.0], vec![4]);
        let m = t.mean();
        assert_eq!(m.shape(), &[1]);
        assert!(approx_eq(m.data[0], 2.5));
    }

    #[test]
    fn test_relu_backward_zeros_negatives() {
        let input = Tensor::new(vec![-1.0, 0.0, 1.0, 2.0], vec![4]);
        let grad_out = vec![1.0f32; 4];
        let grad_in = backward::relu_backward(&grad_out, &input);
        assert_eq!(grad_in, vec![0.0, 0.0, 1.0, 1.0]);
    }

    #[test]
    fn test_sigmoid_backward_shape() {
        let output = Tensor::new(vec![0.5f32; 4], vec![4]);
        let grad_out = vec![1.0f32; 4];
        let grad_in = backward::sigmoid_backward(&grad_out, &output);
        assert_eq!(grad_in.len(), 4);
        // σ(x)(1-σ(x)) at σ=0.5 → 0.25
        for &g in &grad_in {
            assert!(approx_eq(g, 0.25), "expected 0.25, got {g}");
        }
    }

    #[test]
    fn test_linear_backward_shapes() {
        // m=2, k=3, n=4
        let grad_output = vec![1.0f32; 2 * 4];
        let input = vec![0.5f32; 2 * 3];
        let weights = vec![0.1f32; 3 * 4];
        let (dx, dw, db) = backward::linear_backward(&grad_output, &input, &weights, 2, 3, 4);
        assert_eq!(dx.len(), 2 * 3, "dL/dx shape mismatch");
        assert_eq!(dw.len(), 3 * 4, "dL/dW shape mismatch");
        assert_eq!(db.len(), 4, "dL/db shape mismatch");
    }

    #[test]
    fn test_cross_entropy_loss_basic() {
        // Logits heavily favour class 0.
        let logits = vec![10.0f32, 0.0, 0.0];
        let loss_correct = cross_entropy_loss(&logits, 0);
        let loss_wrong = cross_entropy_loss(&logits, 1);
        assert!(loss_correct < 0.01, "loss for correct class must be near 0");
        assert!(loss_wrong > 5.0, "loss for wrong class must be high");
    }

    #[test]
    fn test_cross_entropy_backward_sums_to_zero() {
        // The gradient softmax(logits) - one_hot(target) sums to 0.
        let logits = vec![1.0f32, 2.0, 3.0];
        let grad = backward::cross_entropy_backward(&logits, 1);
        let total: f32 = grad.iter().sum();
        assert!(
            total.abs() < EPS,
            "cross-entropy gradient must sum to ~0, got {total}"
        );
    }

    #[test]
    fn test_sequence_perplexity() {
        // Perfect predictor: logits heavily favour target class each time.
        let pairs: Vec<(Vec<f32>, u32)> = (0..3)
            .map(|i| {
                let mut l = vec![0.0f32; 4];
                l[i] = 20.0;
                (l, i as u32)
            })
            .collect();
        let ppl = sequence_perplexity(&pairs);
        assert!(
            ppl < 1.01,
            "near-perfect predictor must have perplexity ~1, got {ppl}"
        );

        // Empty should return infinity.
        assert!(sequence_perplexity(&[]).is_infinite());
    }

    #[test]
    fn test_tensor_accumulate_grad() {
        let mut t = Tensor::new(vec![1.0, 2.0, 3.0], vec![3]).requires_grad();
        t.accumulate_grad(&[0.1, 0.2, 0.3]);
        t.accumulate_grad(&[0.1, 0.2, 0.3]);
        let grad = t.grad.as_ref().expect("grad must be Some");
        assert!(approx_eq(grad[0], 0.2));
        assert!(approx_eq(grad[1], 0.4));
        assert!(approx_eq(grad[2], 0.6));
    }
}