aprender-core 0.31.2

Next-generation machine learning library in pure Rust
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
pub(crate) use super::*;

// Mock module for testing
pub(super) struct MockLinear {
    weights: Tensor,
}

impl MockLinear {
    fn new(data: &[f32], out_features: usize, in_features: usize) -> Self {
        Self {
            weights: Tensor::new(data, &[out_features, in_features]),
        }
    }
}

impl Module for MockLinear {
    fn forward(&self, input: &Tensor) -> Tensor {
        input.clone()
    }

    fn parameters(&self) -> Vec<&Tensor> {
        vec![&self.weights]
    }
}

// ==========================================================================
// FALSIFICATION: SparseGPT requires calibration
// ==========================================================================
#[test]
fn test_sparsegpt_requires_calibration() {
    let sparsegpt = SparseGPTImportance::new("layer0");
    assert!(
        sparsegpt.requires_calibration(),
        "SGP-01 FALSIFIED: SparseGPT must require calibration"
    );
}

#[test]
fn test_sparsegpt_errors_without_calibration() {
    let module = MockLinear::new(&[1.0, 2.0, 3.0, 4.0], 2, 2);
    let sparsegpt = SparseGPTImportance::new("layer0");

    let result = sparsegpt.compute(&module, None);

    assert!(
        result.is_err(),
        "SGP-02 FALSIFIED: Should error without calibration"
    );
    match result.unwrap_err() {
        PruningError::CalibrationRequired { method } => {
            assert_eq!(method, "sparsegpt");
        }
        _ => panic!("SGP-02 FALSIFIED: Expected CalibrationRequired error"),
    }
}

// ==========================================================================
// FALSIFICATION: Hessian computation
// ==========================================================================
#[test]
fn test_hessian_computation_basic() {
    let sparsegpt = SparseGPTImportance::new("layer0").with_damp(0.0);

    // Simple 2x2 case: activations = [[1, 2], [3, 4]]
    // X^T X = [[1, 3], [2, 4]] * [[1, 2], [3, 4]] = [[10, 14], [14, 20]]
    // Normalized by n=2: [[5, 7], [7, 10]]
    let activations = Tensor::new(&[1.0, 2.0, 3.0, 4.0], &[2, 2]);
    let hessian = sparsegpt.compute_hessian(&activations).unwrap();

    let data = hessian.data();
    assert!(
        (data[0] - 5.0).abs() < 1e-5,
        "SGP-03 FALSIFIED: H[0,0] should be 5"
    );
    assert!(
        (data[1] - 7.0).abs() < 1e-5,
        "SGP-03 FALSIFIED: H[0,1] should be 7"
    );
    assert!(
        (data[2] - 7.0).abs() < 1e-5,
        "SGP-03 FALSIFIED: H[1,0] should be 7"
    );
    assert!(
        (data[3] - 10.0).abs() < 1e-5,
        "SGP-03 FALSIFIED: H[1,1] should be 10"
    );
}

#[test]
fn test_hessian_with_damping() {
    let sparsegpt = SparseGPTImportance::new("layer0").with_damp(1.0);

    // Activations: [[1, 1]]
    // X^T X = [[1], [1]] * [[1, 1]] = [[1, 1], [1, 1]]
    // With damp=1.0: [[2, 1], [1, 2]]
    let activations = Tensor::new(&[1.0, 1.0], &[1, 2]);
    let hessian = sparsegpt.compute_hessian(&activations).unwrap();

    let data = hessian.data();
    assert!(
        (data[0] - 2.0).abs() < 1e-5,
        "SGP-04 FALSIFIED: H[0,0] should be 2"
    );
    assert!(
        (data[3] - 2.0).abs() < 1e-5,
        "SGP-04 FALSIFIED: H[1,1] should be 2"
    );
}

#[test]
fn test_hessian_is_symmetric() {
    let sparsegpt = SparseGPTImportance::new("layer0").with_damp(0.1);

    let activations = Tensor::new(&[1.0, 2.0, 3.0, 4.0, 5.0, 6.0], &[2, 3]);
    let hessian = sparsegpt.compute_hessian(&activations).unwrap();

    let data = hessian.data();
    // Check symmetry: H[i,j] == H[j,i]
    assert!(
        (data[1] - data[3]).abs() < 1e-5,
        "SGP-05 FALSIFIED: Hessian should be symmetric (0,1) vs (1,0)"
    );
    assert!(
        (data[2] - data[6]).abs() < 1e-5,
        "SGP-05 FALSIFIED: Hessian should be symmetric (0,2) vs (2,0)"
    );
    assert!(
        (data[5] - data[7]).abs() < 1e-5,
        "SGP-05 FALSIFIED: Hessian should be symmetric (1,2) vs (2,1)"
    );
}

// ==========================================================================
// FALSIFICATION: Hessian inverse computation
// ==========================================================================
#[test]
fn test_hessian_inverse_identity() {
    let sparsegpt = SparseGPTImportance::new("layer0");

    // 2x2 identity matrix
    let hessian = Tensor::new(&[1.0, 0.0, 0.0, 1.0], &[2, 2]);
    let h_inv = sparsegpt.compute_hessian_inverse(&hessian).unwrap();

    let data = h_inv.data();
    // Inverse of identity is identity
    assert!(
        (data[0] - 1.0).abs() < 1e-5,
        "SGP-06 FALSIFIED: H_inv[0,0] should be 1"
    );
    assert!(
        (data[1] - 0.0).abs() < 1e-5,
        "SGP-06 FALSIFIED: H_inv[0,1] should be 0"
    );
    assert!(
        (data[2] - 0.0).abs() < 1e-5,
        "SGP-06 FALSIFIED: H_inv[1,0] should be 0"
    );
    assert!(
        (data[3] - 1.0).abs() < 1e-5,
        "SGP-06 FALSIFIED: H_inv[1,1] should be 1"
    );
}

#[test]
fn test_hessian_inverse_2x2() {
    let sparsegpt = SparseGPTImportance::new("layer0");

    // [[4, 2], [2, 2]] -> inverse = [[0.5, -0.5], [-0.5, 1]]
    let hessian = Tensor::new(&[4.0, 2.0, 2.0, 2.0], &[2, 2]);
    let h_inv = sparsegpt.compute_hessian_inverse(&hessian).unwrap();

    let data = h_inv.data();
    assert!(
        (data[0] - 0.5).abs() < 1e-4,
        "SGP-07 FALSIFIED: H_inv[0,0] should be 0.5"
    );
    assert!(
        (data[1] - (-0.5)).abs() < 1e-4,
        "SGP-07 FALSIFIED: H_inv[0,1] should be -0.5"
    );
    assert!(
        (data[2] - (-0.5)).abs() < 1e-4,
        "SGP-07 FALSIFIED: H_inv[1,0] should be -0.5"
    );
    assert!(
        (data[3] - 1.0).abs() < 1e-4,
        "SGP-07 FALSIFIED: H_inv[1,1] should be 1.0"
    );
}

#[test]
fn test_hessian_inverse_singular_matrix_fails() {
    let sparsegpt = SparseGPTImportance::new("layer0");

    // Singular matrix (not positive definite)
    let hessian = Tensor::new(&[1.0, 1.0, 1.0, 1.0], &[2, 2]);
    let result = sparsegpt.compute_hessian_inverse(&hessian);

    assert!(
        result.is_err(),
        "SGP-08 FALSIFIED: Singular matrix should fail"
    );
    match result.unwrap_err() {
        PruningError::NumericalInstability { method, details } => {
            assert_eq!(method, "SparseGPT");
            assert!(details.contains("not positive definite"));
        }
        _ => panic!("SGP-08 FALSIFIED: Expected NumericalInstability error"),
    }
}

// ==========================================================================
// FALSIFICATION: Saliency computation
// ==========================================================================
#[test]
fn test_saliency_computation() {
    let sparsegpt = SparseGPTImportance::new("layer0");

    // Weights [2, 2]: [[1, 2], [3, 4]]
    let weights = Tensor::new(&[1.0, 2.0, 3.0, 4.0], &[2, 2]);
    // H^{-1} diagonal = [1, 2]
    let h_inv = Tensor::new(&[1.0, 0.0, 0.0, 2.0], &[2, 2]);

    let saliency = sparsegpt.compute_saliency(&weights, &h_inv).unwrap();
    let data = saliency.data();

    // saliency[i,j] = w[i,j]^2 / h_inv[j,j]
    // [0,0]: 1^2 / 1 = 1
    // [0,1]: 2^2 / 2 = 2
    // [1,0]: 3^2 / 1 = 9
    // [1,1]: 4^2 / 2 = 8
    assert!(
        (data[0] - 1.0).abs() < 1e-5,
        "SGP-09 FALSIFIED: saliency[0,0] should be 1"
    );
    assert!(
        (data[1] - 2.0).abs() < 1e-5,
        "SGP-09 FALSIFIED: saliency[0,1] should be 2"
    );
    assert!(
        (data[2] - 9.0).abs() < 1e-5,
        "SGP-09 FALSIFIED: saliency[1,0] should be 9"
    );
    assert!(
        (data[3] - 8.0).abs() < 1e-5,
        "SGP-09 FALSIFIED: saliency[1,1] should be 8"
    );
}

#[test]
fn test_saliency_non_negative() {
    let sparsegpt = SparseGPTImportance::new("layer0");

    // Weights with negative values
    let weights = Tensor::new(&[-1.0, -2.0, 3.0, -4.0], &[2, 2]);
    let h_inv = Tensor::new(&[1.0, 0.0, 0.0, 1.0], &[2, 2]);

    let saliency = sparsegpt.compute_saliency(&weights, &h_inv).unwrap();

    for &v in saliency.data() {
        assert!(
            v >= 0.0,
            "SGP-10 FALSIFIED: Saliency should be non-negative"
        );
    }
}

// ==========================================================================
// FALSIFICATION: NaN/Inf detection (Jidoka)
// ==========================================================================
#[test]
fn test_hessian_detects_nan_activations() {
    let sparsegpt = SparseGPTImportance::new("layer0");

    let activations = Tensor::new(&[1.0, f32::NAN, 3.0, 4.0], &[2, 2]);
    let result = sparsegpt.compute_hessian(&activations);

    assert!(
        result.is_err(),
        "SGP-11 FALSIFIED: NaN activations should be detected"
    );
}

#[test]
fn test_hessian_detects_inf_activations() {
    let sparsegpt = SparseGPTImportance::new("layer0");

    let activations = Tensor::new(&[1.0, f32::INFINITY, 3.0, 4.0], &[2, 2]);
    let result = sparsegpt.compute_hessian(&activations);

    assert!(
        result.is_err(),
        "SGP-12 FALSIFIED: Inf activations should be detected"
    );
}

// ==========================================================================
// FALSIFICATION: Shape validation
// ==========================================================================
#[test]
fn test_hessian_1d_rejected() {
    let sparsegpt = SparseGPTImportance::new("layer0");

    let activations = Tensor::new(&[1.0, 2.0, 3.0], &[3]);
    let result = sparsegpt.compute_hessian(&activations);

    assert!(
        result.is_err(),
        "SGP-13 FALSIFIED: 1D activations should be rejected"
    );
}

#[test]
fn test_saliency_shape_mismatch() {
    let sparsegpt = SparseGPTImportance::new("layer0");

    let weights = Tensor::new(&[1.0, 2.0, 3.0, 4.0], &[2, 2]);
    let h_inv = Tensor::new(&[1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], &[3, 3]); // Wrong size

    let result = sparsegpt.compute_saliency(&weights, &h_inv);

    assert!(
        result.is_err(),
        "SGP-14 FALSIFIED: Shape mismatch should be detected"
    );
}

// ==========================================================================
// FALSIFICATION: Builder pattern
// ==========================================================================
#[test]
fn test_sparsegpt_with_block_size() {
    let sparsegpt = SparseGPTImportance::new("layer0").with_block_size(64);
    assert_eq!(sparsegpt.block_size(), 64);
}

#[test]
fn test_sparsegpt_with_damp() {
    let sparsegpt = SparseGPTImportance::new("layer0").with_damp(0.1);
    assert!((sparsegpt.damp() - 0.1).abs() < 1e-6);
}

// ==========================================================================
// FALSIFICATION: Name method
// ==========================================================================
#[test]
fn test_sparsegpt_name() {
    let sparsegpt = SparseGPTImportance::new("layer0");
    assert_eq!(sparsegpt.name(), "sparsegpt");
}

// ==========================================================================
// FALSIFICATION: Layer name getter
// ==========================================================================
#[test]
fn test_sparsegpt_layer_name() {
    let sparsegpt = SparseGPTImportance::new("model.layers.0.mlp");
    assert_eq!(sparsegpt.layer_name(), "model.layers.0.mlp");
}

// ==========================================================================
// FALSIFICATION: End-to-end importance computation
// ==========================================================================
#[test]
fn test_compute_from_activations() {
    let sparsegpt = SparseGPTImportance::new("layer0").with_damp(0.1);

    let weights = Tensor::new(&[1.0, 2.0, 3.0, 4.0], &[2, 2]);
    let activations = Tensor::new(&[1.0, 2.0, 2.0, 1.0], &[2, 2]);

    let result = sparsegpt.compute_from_activations(&weights, &activations);

    assert!(
        result.is_ok(),
        "SGP-15 FALSIFIED: End-to-end computation should succeed"
    );
    let scores = result.unwrap();
    assert_eq!(scores.method, "sparsegpt_saliency");
    assert_eq!(scores.shape(), &[2, 2]);
}

// ==========================================================================
// FALSIFICATION: Empty activations
// ==========================================================================
#[test]
fn test_hessian_empty_activations() {
    let sparsegpt = SparseGPTImportance::new("layer0");

    let activations = Tensor::new(&[], &[0, 2]);
    let result = sparsegpt.compute_hessian(&activations);

    assert!(
        result.is_err(),
        "SGP-16 FALSIFIED: Empty activations should error"
    );
}

// ==========================================================================
// FALSIFICATION: Clone and Debug
// ==========================================================================
#[test]
fn test_sparsegpt_clone() {
    let orig = SparseGPTImportance::new("layer0").with_block_size(64);
    let cloned = orig.clone();

    assert_eq!(orig.layer_name(), cloned.layer_name());
    assert_eq!(orig.block_size(), cloned.block_size());
}

#[test]
fn test_sparsegpt_debug() {
    let sparsegpt = SparseGPTImportance::new("layer0");
    let debug = format!("{:?}", sparsegpt);
    assert!(debug.contains("SparseGPTImportance"));
}

// ==========================================================================
// FALSIFICATION: with_relative_damp builder
// ==========================================================================
#[test]
fn test_sparsegpt_with_relative_damp() {
    let sparsegpt = SparseGPTImportance::new("layer0").with_relative_damp(0.05);
    assert!((sparsegpt.damp() - 0.05).abs() < 1e-6);
    assert!(sparsegpt.damp_relative); // Internal flag check
}

#[test]
fn test_hessian_with_relative_damping() {
    // Test that relative damping computes based on mean diagonal
    let sparsegpt = SparseGPTImportance::new("layer0").with_relative_damp(0.1);

    // Activations: [[2, 0], [0, 2]] -> X^T X = [[4, 0], [0, 4]]
    // Mean diagonal = 4, relative damp = 0.1 * 4 = 0.4
    // Final: [[4.4, 0], [0, 4.4]]
    let activations = Tensor::new(&[2.0, 0.0, 0.0, 2.0], &[2, 2]);
    let hessian = sparsegpt.compute_hessian(&activations).unwrap();

    let data = hessian.data();
    // X^T X / n = [[4, 0], [0, 4]] / 2 = [[2, 0], [0, 2]]
    // Mean diagonal = 2, damp = 0.1 * 2 = 0.2
    // Final diagonal = 2 + 0.2 = 2.2
    assert!(
        (data[0] - 2.2).abs() < 1e-4,
        "SGP-17 FALSIFIED: With relative damp"
    );
    assert!(
        (data[3] - 2.2).abs() < 1e-4,
        "SGP-17 FALSIFIED: With relative damp"
    );
}

#[path = "sparsegpt_tests_calibration.rs"]
mod sparsegpt_tests_calibration;