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
#![allow(clippy::disallowed_methods)]
//! Falsification: GPU State Isolation Tests
//!
//! Tests that GPU state does not leak between generations.
//! These are model-tests gated — they require actual model files and GPU.
//!
//! Validates the PMAT-PREFILL-FIX: stale position_buf after CUDA graph.
//! Also validates Bug 199 (GGUF GPU clone regression) patterns.
#![cfg(feature = "model-tests")]
// =============================================================================
// GPU State Isolation: Sequential Generation Determinism
// =============================================================================
/// Generate with the same prompt twice — output must be identical.
/// This catches stale KV cache, stale position_buf, and CUDA graph leaks.
#[test]
fn gpu_state_sequential_determinism() {
let model_path = match std::env::var("TEST_MODEL_PATH") {
Ok(p) => std::path::PathBuf::from(p),
Err(_) => {
eprintln!("FALSIFICATION-SKIP: gate=gpu_state_sequential_determinism reason=TEST_MODEL_PATH not set");
return;
}
};
// Use apr CLI to generate twice with same prompt and temperature=0
let output1 = std::process::Command::new("cargo")
.args([
"run",
"--bin",
"apr",
"--features",
"inference",
"--",
"run",
&model_path.to_string_lossy(),
"--prompt",
"What is 2+2?",
"--max-tokens",
"16",
"--temperature",
"0",
])
.output()
.expect("first generation");
let output2 = std::process::Command::new("cargo")
.args([
"run",
"--bin",
"apr",
"--features",
"inference",
"--",
"run",
&model_path.to_string_lossy(),
"--prompt",
"What is 2+2?",
"--max-tokens",
"16",
"--temperature",
"0",
])
.output()
.expect("second generation");
let text1 = String::from_utf8_lossy(&output1.stdout);
let text2 = String::from_utf8_lossy(&output2.stdout);
assert_eq!(
text1, text2,
"Sequential generations with same prompt and temp=0 must be identical.\n\
Gen 1: {text1}\n\
Gen 2: {text2}"
);
}
/// Generate with different prompts — output must differ.
/// This catches models that are "stuck" returning the same output.
#[test]
fn gpu_state_different_prompts_produce_different_output() {
let model_path = match std::env::var("TEST_MODEL_PATH") {
Ok(p) => std::path::PathBuf::from(p),
Err(_) => {
eprintln!("FALSIFICATION-SKIP: gate=gpu_state_different_prompts reason=TEST_MODEL_PATH not set");
return;
}
};
let output1 = std::process::Command::new("cargo")
.args([
"run",
"--bin",
"apr",
"--features",
"inference",
"--",
"run",
&model_path.to_string_lossy(),
"--prompt",
"What is the capital of France?",
"--max-tokens",
"16",
"--temperature",
"0",
])
.output()
.expect("prompt A generation");
let output2 = std::process::Command::new("cargo")
.args([
"run",
"--bin",
"apr",
"--features",
"inference",
"--",
"run",
&model_path.to_string_lossy(),
"--prompt",
"Write a haiku about rust programming",
"--max-tokens",
"16",
"--temperature",
"0",
])
.output()
.expect("prompt B generation");
let text1 = String::from_utf8_lossy(&output1.stdout);
let text2 = String::from_utf8_lossy(&output2.stdout);
assert_ne!(
text1, text2,
"Different prompts must produce different output — model may be stuck"
);
}
// =============================================================================
// GPU Memory Tests
// =============================================================================
/// 10 sequential generations should not grow memory unboundedly
#[test]
fn gpu_state_no_memory_leak_10_generations() {
let model_path = match std::env::var("TEST_MODEL_PATH") {
Ok(p) => std::path::PathBuf::from(p),
Err(_) => {
eprintln!(
"FALSIFICATION-SKIP: gate=gpu_state_no_memory_leak reason=TEST_MODEL_PATH not set"
);
return;
}
};
for i in 0..10 {
let output = std::process::Command::new("cargo")
.args([
"run",
"--bin",
"apr",
"--features",
"inference",
"--",
"run",
&model_path.to_string_lossy(),
"--prompt",
&format!("Count to {}", i + 1),
"--max-tokens",
"8",
"--temperature",
"0",
])
.output()
.unwrap_or_else(|_| panic!("Generation {i} failed"));
assert!(
output.status.success(),
"Generation {i} must succeed: {}",
String::from_utf8_lossy(&output.stderr)
);
}
}
// =============================================================================
// KV Cache Reset Tests
// =============================================================================
/// After KV cache reset, first generation must succeed and produce output
#[test]
fn gpu_state_kv_cache_reset_produces_output() {
let model_path = match std::env::var("TEST_MODEL_PATH") {
Ok(p) => std::path::PathBuf::from(p),
Err(_) => {
eprintln!(
"FALSIFICATION-SKIP: gate=gpu_state_kv_cache_reset reason=TEST_MODEL_PATH not set"
);
return;
}
};
let output = std::process::Command::new("cargo")
.args([
"run",
"--bin",
"apr",
"--features",
"inference",
"--",
"run",
&model_path.to_string_lossy(),
"--prompt",
"Hello",
"--max-tokens",
"4",
"--temperature",
"0",
])
.output()
.expect("generation after implicit KV reset");
let text = String::from_utf8_lossy(&output.stdout);
assert!(
!text.trim().is_empty(),
"Must produce non-empty output after KV cache reset"
);
}
// =============================================================================
// GPU QA Gate Integration
// =============================================================================
/// apr qa with --skip-gpu-state=false should execute the GPU state gate
#[test]
fn gpu_state_qa_gate_exists() {
let model_path = match std::env::var("TEST_MODEL_PATH") {
Ok(p) => std::path::PathBuf::from(p),
Err(_) => {
eprintln!(
"FALSIFICATION-SKIP: gate=gpu_state_qa_gate_exists reason=TEST_MODEL_PATH not set"
);
return;
}
};
let output = std::process::Command::new("cargo")
.args([
"run",
"--bin",
"apr",
"--features",
"inference",
"--",
"qa",
&model_path.to_string_lossy(),
"--json",
])
.output()
.expect("apr qa --json");
let text = String::from_utf8_lossy(&output.stdout);
// The JSON output should mention gpu_state_isolation gate (either run or skipped)
assert!(
text.contains("gpu_state_isolation"),
"apr qa must include gpu_state_isolation gate in output"
);
}