realizar 0.8.5

Pure Rust ML inference engine built from scratch - model serving for GGUF and safetensors
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

/// Test fused_gate_up_into basic functionality
#[test]
#[serial]
fn test_cov028_fused_gate_up_into_basic() {
    if !CudaExecutor::is_available() {
        return;
    }
    let mut executor = CudaExecutor::new(0).expect("CUDA executor");

    let hidden_size = 64u32;
    let intermediate_size = 128u32;

    let x_data = vec![0.1f32; hidden_size as usize];
    let x = GpuBuffer::from_host(executor.context(), &x_data).expect("x");

    // Weight matrices: hidden_size x intermediate_size
    let w_gate_data = vec![0.01f32; (hidden_size * intermediate_size) as usize];
    let w_up_data = vec![0.01f32; (hidden_size * intermediate_size) as usize];

    let w_gate = GpuBuffer::from_host(executor.context(), &w_gate_data).expect("w_gate");
    let w_up = GpuBuffer::from_host(executor.context(), &w_up_data).expect("w_up");

    let output = GpuBuffer::new(executor.context(), intermediate_size as usize).expect("output");

    let result =
        executor.fused_gate_up_into(&x, &w_gate, &w_up, &output, hidden_size, intermediate_size);
    assert!(
        result.is_ok(),
        "fused_gate_up_into should succeed: {:?}",
        result.err()
    );
}

/// Test rope_into basic functionality
#[test]
#[serial]
fn test_cov028_rope_into_basic() {
    if !CudaExecutor::is_available() {
        return;
    }
    let mut executor = CudaExecutor::new(0).expect("CUDA executor");

    let num_heads = 4u32;
    let head_dim = 32u32;
    let position = 5u32;
    let theta = 10000.0f32;

    let input_size = (num_heads * head_dim) as usize;
    let input_data = vec![0.5f32; input_size];
    let input = GpuBuffer::from_host(executor.context(), &input_data).expect("input");
    let output = GpuBuffer::new(executor.context(), input_size).expect("output");

    let result = executor.rope_into(&input, &output, position, num_heads, head_dim, theta);
    assert!(
        result.is_ok(),
        "rope_into should succeed: {:?}",
        result.err()
    );
}

/// Test rope_into with different positions
#[test]
#[serial]
fn test_cov028_rope_into_varying_positions() {
    if !CudaExecutor::is_available() {
        return;
    }
    let mut executor = CudaExecutor::new(0).expect("CUDA executor");

    let num_heads = 8u32;
    let head_dim = 64u32;
    let theta = 10000.0f32;

    let input_size = (num_heads * head_dim) as usize;
    let input_data = vec![1.0f32; input_size];
    let input = GpuBuffer::from_host(executor.context(), &input_data).expect("input");
    let output = GpuBuffer::new(executor.context(), input_size).expect("output");

    // Test multiple positions
    for position in [0, 1, 10, 100, 1000] {
        let result = executor.rope_into(&input, &output, position, num_heads, head_dim, theta);
        assert!(
            result.is_ok(),
            "rope_into at position {} should succeed: {:?}",
            position,
            result.err()
        );
    }
}

/// Test batched_q4k_gemv_into basic functionality
#[test]
#[serial]
fn test_cov028_batched_q4k_gemv_into_basic() {
    if !CudaExecutor::is_available() {
        return;
    }
    let mut executor = CudaExecutor::new(0).expect("CUDA executor");

    let m = 4u32; // batch size
    let n = 32u32;
    let k = 256u32;

    // Load Q4K weights
    let weight_bytes = (n as usize) * 144; // Q4K is 144 bytes per 256 values
    let weights = vec![0u8; weight_bytes];
    executor
        .load_quantized_weights("test_batched_q4k", &weights)
        .expect("load weights");
    let weight_ptr = executor
        .get_quantized_weight_ptr("test_batched_q4k")
        .expect("get ptr");

    // Input: m x k elements
    let input_data = vec![0.1f32; (m * k) as usize];
    let input = GpuBuffer::from_host(executor.context(), &input_data).expect("input");

    // Output: m x n elements
    let output = GpuBuffer::new(executor.context(), (m * n) as usize).expect("output");

    let result = executor.batched_q4k_gemv_into(weight_ptr, &input, &output, m, n, k);
    assert!(
        result.is_ok(),
        "batched_q4k_gemv_into should succeed: {:?}",
        result.err()
    );
}

/// Test batched_q4k_gemv_into with M=16 (multi-warp path)
#[test]
#[serial]
fn test_cov028_batched_q4k_gemv_into_m16() {
    if !CudaExecutor::is_available() {
        return;
    }
    let mut executor = CudaExecutor::new(0).expect("CUDA executor");

    let m = 16u32; // triggers multi-warp kernel
    let n = 32u32;
    let k = 256u32;

    let weight_bytes = (n as usize) * 144;
    let weights = vec![0u8; weight_bytes];
    executor
        .load_quantized_weights("test_batched_q4k_m16", &weights)
        .expect("load");
    let weight_ptr = executor
        .get_quantized_weight_ptr("test_batched_q4k_m16")
        .expect("get ptr");

    let input_data = vec![0.1f32; (m * k) as usize];
    let input = GpuBuffer::from_host(executor.context(), &input_data).expect("input");
    let output = GpuBuffer::new(executor.context(), (m * n) as usize).expect("output");

    let result = executor.batched_q4k_gemv_into(weight_ptr, &input, &output, m, n, k);
    assert!(
        result.is_ok(),
        "batched_q4k_gemv_into M=16 should succeed: {:?}",
        result.err()
    );
}

/// Test batched_q6k_gemv_into basic functionality
#[test]
#[serial]
fn test_cov028_batched_q6k_gemv_into_basic() {
    if !CudaExecutor::is_available() {
        return;
    }
    let mut executor = CudaExecutor::new(0).expect("CUDA executor");

    let m = 4u32;
    let n = 32u32;
    let k = 256u32;

    // Load Q6K weights (210 bytes per 256 values)
    let weight_bytes = (n as usize) * 210;
    let weights = vec![0u8; weight_bytes];
    executor
        .load_quantized_weights_with_type("test_batched_q6k", &weights, 14)
        .expect("load");
    let weight_ptr = executor
        .get_quantized_weight_ptr("test_batched_q6k")
        .expect("get ptr");

    let input_data = vec![0.1f32; (m * k) as usize];
    let input = GpuBuffer::from_host(executor.context(), &input_data).expect("input");
    let output = GpuBuffer::new(executor.context(), (m * n) as usize).expect("output");

    let result = executor.batched_q6k_gemv_into(weight_ptr, &input, &output, m, n, k);
    assert!(
        result.is_ok(),
        "batched_q6k_gemv_into should succeed: {:?}",
        result.err()
    );
}

/// Test layer_norm_gpu basic functionality
#[test]
#[serial]
fn test_cov028_layer_norm_gpu_basic() {
    if !CudaExecutor::is_available() {
        return;
    }
    let mut executor = CudaExecutor::new(0).expect("CUDA executor");

    let hidden_size = 64u32;
    let batch_size = 1u32;
    let epsilon = 1e-5f32;

    let input_data = vec![0.5f32; hidden_size as usize];
    let gamma_data = vec![1.0f32; hidden_size as usize];
    let beta_data = vec![0.0f32; hidden_size as usize];

    let input = GpuBuffer::from_host(executor.context(), &input_data).expect("input");
    let output = GpuBuffer::new(executor.context(), hidden_size as usize).expect("output");
    let gamma = GpuBuffer::from_host(executor.context(), &gamma_data).expect("gamma");
    let beta = GpuBuffer::from_host(executor.context(), &beta_data).expect("beta");

    let result = executor.layer_norm_gpu(
        &input,
        &output,
        &gamma,
        &beta,
        hidden_size,
        batch_size,
        epsilon,
    );
    assert!(
        result.is_ok(),
        "layer_norm_gpu should succeed: {:?}",
        result.err()
    );
}

/// Test layer_norm_gpu with batch
#[test]
#[serial]
fn test_cov028_layer_norm_gpu_batched() {
    if !CudaExecutor::is_available() {
        return;
    }
    let mut executor = CudaExecutor::new(0).expect("CUDA executor");

    let hidden_size = 128u32;
    let batch_size = 4u32;
    let epsilon = 1e-6f32;

    let input_data = vec![0.5f32; (hidden_size * batch_size) as usize];
    let gamma_data = vec![1.0f32; hidden_size as usize];
    let beta_data = vec![0.1f32; hidden_size as usize];

    let input = GpuBuffer::from_host(executor.context(), &input_data).expect("input");
    let output =
        GpuBuffer::new(executor.context(), (hidden_size * batch_size) as usize).expect("output");
    let gamma = GpuBuffer::from_host(executor.context(), &gamma_data).expect("gamma");
    let beta = GpuBuffer::from_host(executor.context(), &beta_data).expect("beta");

    let result = executor.layer_norm_gpu(
        &input,
        &output,
        &gamma,
        &beta,
        hidden_size,
        batch_size,
        epsilon,
    );
    assert!(
        result.is_ok(),
        "layer_norm_gpu batched should succeed: {:?}",
        result.err()
    );
}

/// Test compute_stream getter
#[test]
#[serial]
fn test_cov028_compute_stream() {
    if !CudaExecutor::is_available() {
        return;
    }
    let executor = CudaExecutor::new(0).expect("CUDA executor");

    // compute_stream() returns a reference to CudaStream
    let stream = executor.compute_stream();
    // Just verify we can access it without panic
    assert!(
        std::ptr::from_ref(stream) as usize != 0,
        "stream should be valid"
    );
}

// ============================================================================
// COV-029: More weight and workspace tests
// ============================================================================

/// Test load_weights basic functionality
#[test]
#[serial]
fn test_cov029_load_weights_basic() {
    if !CudaExecutor::is_available() {
        return;
    }
    let mut executor = CudaExecutor::new(0).expect("CUDA executor");

    let weights = vec![0.1f32; 256];
    let result = executor.load_weights("test_weight", &weights);
    assert!(
        result.is_ok(),
        "load_weights should succeed: {:?}",
        result.err()
    );

    let bytes = result.unwrap();
    assert_eq!(bytes, 256 * 4, "Should load 256 f32 values (1024 bytes)");
}

/// Test load_weights and has_weights
#[test]
#[serial]
fn test_cov029_load_weights_and_has() {
    if !CudaExecutor::is_available() {
        return;
    }
    let mut executor = CudaExecutor::new(0).expect("CUDA executor");

    assert!(
        !executor.has_weights("my_weight"),
        "Should not have weight initially"
    );

    let weights = vec![1.0f32; 128];
    executor.load_weights("my_weight", &weights).expect("load");

    assert!(
        executor.has_weights("my_weight"),
        "Should have weight after load"
    );
    assert!(
        !executor.has_weights("other_weight"),
        "Should not have unloaded weight"
    );
}

/// Test cached_weight_count
#[test]
#[serial]
fn test_cov029_cached_weight_count() {
    if !CudaExecutor::is_available() {
        return;
    }
    let mut executor = CudaExecutor::new(0).expect("CUDA executor");

    assert_eq!(
        executor.cached_weight_count(),
        0,
        "Initial count should be 0"
    );

    executor.load_weights("w1", &[1.0f32; 64]).expect("load w1");
    assert_eq!(executor.cached_weight_count(), 1, "Count should be 1");

    executor.load_weights("w2", &[1.0f32; 64]).expect("load w2");
    assert_eq!(executor.cached_weight_count(), 2, "Count should be 2");
}

/// Test cached_weight_bytes
#[test]
#[serial]
fn test_cov029_cached_weight_bytes() {
    if !CudaExecutor::is_available() {
        return;
    }
    let mut executor = CudaExecutor::new(0).expect("CUDA executor");

    assert_eq!(
        executor.cached_weight_bytes(),
        0,
        "Initial bytes should be 0"
    );

    executor
        .load_weights("w1", &[1.0f32; 100])
        .expect("load w1");
    assert_eq!(
        executor.cached_weight_bytes(),
        400,
        "Should be 400 bytes (100 * 4)"
    );

    executor.load_weights("w2", &[1.0f32; 50]).expect("load w2");
    assert_eq!(
        executor.cached_weight_bytes(),
        600,
        "Should be 600 bytes total"
    );
}

/// Test has_indexed_weights
#[test]
#[serial]
fn test_cov029_has_indexed_weights() {
    if !CudaExecutor::is_available() {
        return;
    }
    let executor = CudaExecutor::new(0).expect("CUDA executor");

    // Initially should not have indexed weights
    assert!(
        !executor.has_indexed_weights(),
        "Should not have indexed weights initially"
    );
}

/// Test return_staging_buffer
#[test]
#[serial]
fn test_cov029_return_staging_buffer() {
    if !CudaExecutor::is_available() {
        return;
    }
    let mut executor = CudaExecutor::new(0).expect("CUDA executor");

    // Get a staging buffer
    let buf = executor.get_staging_buffer(256);

    // Return it to the pool
    executor.return_staging_buffer(buf);

    // Pool should have returned buffer
    let stats = executor.staging_pool_stats();
    assert!(
        stats.free_buffers >= 1,
        "Pool should have at least 1 buffer after return"
    );
}