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
589
590
591
592
593
//! Campaign scaffolding: ceiling probes and scalar-vs-fused oracles.
//!
//! These are `#[cfg(test)]` measurement harnesses from the 2026-08 encoder
//! campaign, not unit tests of shipped behaviour. They live here rather than
//! in the encoder files so the hot paths stay readable — several read PNGs and
//! write CSVs, which is not something the encoder core should appear to do.
use super::*;
#[cfg(test)]
mod ceiling_probe {
use super::*;
fn load_png_gray_channels(path: &str) -> (usize, usize, Vec<u8>, Vec<u8>) {
let f = std::fs::File::open(path).expect("png");
let mut dec = png::Decoder::new(std::io::BufReader::new(f));
dec.set_transformations(png::Transformations::EXPAND | png::Transformations::STRIP_16);
let mut reader = dec.read_info().unwrap();
let mut buf = vec![0u8; reader.output_buffer_size()];
let info = reader.next_frame(&mut buf).unwrap();
buf.truncate(info.buffer_size());
let (w, h) = (info.width as usize, info.height as usize);
let step = match info.color_type {
png::ColorType::Rgb => 3,
png::ColorType::Rgba => 4,
png::ColorType::Grayscale => 1,
png::ColorType::GrayscaleAlpha => 2,
_ => panic!("unexpected color type"),
};
let mut r = Vec::with_capacity(w * h);
let mut g = Vec::with_capacity(w * h);
for px in buf.chunks_exact(step) {
r.push(px[0]);
g.push(px[if step >= 3 { 1 } else { 0 }]);
}
(w, h, r, g)
}
fn block_samples(chan: &[u8], w: usize, bx: usize, by: usize) -> [u8; 16] {
let mut s = [0u8; 16];
for row in 0..4 {
for col in 0..4 {
s[row * 4 + col] = chan[(by * 4 + row) * w + bx * 4 + col];
}
}
s
}
/// UNORM-domain SSE of the best signed encoding found by a bounded
/// near-exhaustive endpoint sweep (both orders => both palette modes).
fn exhaustive_signed_sse(samples: &[u8; 16]) -> i64 {
let mut lo = 127i32;
let mut hi = -127i32;
for &s in samples {
let v = unorm_u8_to_snorm_i32(s);
lo = lo.min(v);
hi = hi.max(v);
}
let a_lo = (lo - 8).max(-127);
let a_hi = (hi + 8).min(127);
let current = encode_alpha_block_signed(*samples);
let mut best_err = alpha_sse_s(samples, ¤t);
let mut best = current;
for e0 in a_lo..=a_hi {
for e1 in a_lo..=a_hi {
if e0 == e1 {
continue;
}
consider_alpha_s(e0, e1, samples, &mut best, &mut best_err);
}
}
// 4-lerp sentinel mode benefits from endpoints at range edges too.
best_err as i64
}
fn load_tiff_gray(path: &str) -> Option<(usize, usize, Vec<u8>)> {
use tiff::decoder::DecodingResult;
use tiff::ColorType;
let f = std::fs::File::open(path).ok()?;
let mut dec = tiff::decoder::Decoder::new(std::io::BufReader::new(f)).ok()?;
let (w, h) = dec.dimensions().ok()?;
let ct = dec.colortype().ok()?;
match (ct, dec.read_image().ok()?) {
(ColorType::Gray(8), DecodingResult::U8(v)) => Some((w as usize, h as usize, v)),
_ => None,
}
}
/// Observe-only harvest for the signed sweep gate: every signed block in
/// the corpus -> (map, span, n_unique, null_err, gain, pairs).
#[test]
#[ignore]
fn signed_sweep_harvest() {
let root = env!("CARGO_MANIFEST_DIR");
let mut sources: Vec<(String, Vec<(usize, usize, Vec<u8>)>)> = Vec::new();
// Normals (R+G channels -> bc5s) and roughness masks (R -> bc4s).
for asset in ["Bricks097", "Metal063", "Rock064", "Wood095"] {
let p = format!("{root}/corpus/raw/{asset}/{asset}_1K-PNG_NormalGL.png");
if std::path::Path::new(&p).exists() {
let (w, h, r, g) = load_png_gray_channels(&p);
sources.push((format!("{asset}_normal"), vec![(w, h, r), (w, h, g)]));
}
let p = format!("{root}/corpus/raw/{asset}/{asset}_1K-PNG_Roughness.png");
if std::path::Path::new(&p).exists() {
let (w, h, r, _) = load_png_gray_channels(&p);
sources.push((format!("{asset}_mask"), vec![(w, h, r)]));
}
}
for tex in ["tex_bark", "tex_straw", "tex_water", "tex_wool", "tex_brick_1024"] {
let p = format!("{root}/corpus/raw_tif/{tex}.tiff");
if let Some((w, h, v)) = load_tiff_gray(&p) {
sources.push((tex.to_string(), vec![(w, h, v)]));
}
}
let mut csv = String::from("map,span,n_unique,null_err,gain,pairs,dcheb\n");
for (name, chans) in &sources {
for (w, h, chan) in chans {
for by in 0..h / 4 {
for bx in 0..w / 4 {
let s = block_samples(chan, *w, bx, by);
let (mut best, mut err, lo, hi, span, n_unique) =
encode_alpha_block_signed_presweep(s);
let null_err = err;
if null_err == 0 {
continue;
}
let pre0 = best[0] as i8 as i32;
let pre1 = best[1] as i8 as i32;
signed_sweep(lo, hi, &s, &mut best, &mut err);
let gain = null_err - err;
// Chebyshev distance from pre-sweep endpoints to the
// winners (order-insensitive: try both pairings).
let dcheb = if gain > 0 {
let w0 = best[0] as i8 as i32;
let w1 = best[1] as i8 as i32;
let d_a = (w0 - pre0).abs().max((w1 - pre1).abs());
let d_b = (w0 - pre1).abs().max((w1 - pre0).abs());
d_a.min(d_b)
} else {
-1
};
let range = (hi + 8).min(127) - (lo - 8).max(-127) + 1;
csv.push_str(&format!(
"{name},{span},{n_unique},{null_err},{gain},{},{dcheb}\n",
range * range
));
}
}
}
}
std::fs::write(format!("{root}/target/signed_sweep_harvest.csv"), csv).unwrap();
println!("wrote target/signed_sweep_harvest.csv");
}
#[test]
#[ignore]
fn bc5s_wood_ceiling() {
let root = env!("CARGO_MANIFEST_DIR");
let path = format!("{root}/corpus/raw/Wood095/Wood095_1K-PNG_NormalGL.png");
let (w, h, r, g) = load_png_gray_channels(&path);
let (bw, bh) = (w / 4, h / 4);
let mut cur_sse = 0i64;
let mut ceil_sse = 0i64;
let nthreads = std::thread::available_parallelism().map(|n| n.get()).unwrap_or(4);
let rows_per = (bh + nthreads - 1) / nthreads;
let results: Vec<(i64, i64)> = std::thread::scope(|scope| {
let mut handles = Vec::new();
for t in 0..nthreads {
let (r, g) = (&r, &g);
handles.push(scope.spawn(move || {
let mut cur = 0i64;
let mut ceil = 0i64;
for by in (t * rows_per)..((t + 1) * rows_per).min(bh) {
for bx in 0..bw {
for chan in [r, g] {
let s = block_samples(chan, w, bx, by);
let enc = encode_alpha_block_signed(s);
cur += alpha_sse_s(&s, &enc) as i64;
ceil += exhaustive_signed_sse(&s);
}
}
}
(cur, ceil)
}));
}
handles.into_iter().map(|h| h.join().unwrap()).collect()
});
for (c, x) in results {
cur_sse += c;
ceil_sse += x;
}
let n = (w * h * 2) as f64;
let psnr = |sse: i64| 10.0 * (255.0f64 * 255.0 / (sse as f64 / n)).log10();
println!(
"Wood BC5S: current={:.3} dB ceiling={:.3} dB (delta {:+.3})",
psnr(cur_sse),
psnr(ceil_sse),
psnr(ceil_sse) - psnr(cur_sse)
);
}
}
#[cfg(test)]
mod fuse_oracle {
use super::*;
/// pack_bc1_scored must equal the old pack_bc1 + bc1_sse pair exactly.
#[test]
fn bc1_scored_matches_pack_plus_sse() {
let mut state = 0x243F6A8885A308D3u64;
let mut rng = move || {
state ^= state << 13;
state ^= state >> 7;
state ^= state << 17;
state
};
for case in 0..200_000 {
let mut px = [[0u8; 4]; 16];
let flat = case % 7 == 0;
let base = (rng() & 0xFF) as u8;
for p in px.iter_mut() {
let r = rng();
if flat {
p[0] = base.wrapping_add((r & 3) as u8);
p[1] = base.wrapping_add(((r >> 2) & 3) as u8);
p[2] = base.wrapping_add(((r >> 4) & 3) as u8);
} else {
p[0] = (r & 0xFF) as u8;
p[1] = ((r >> 8) & 0xFF) as u8;
p[2] = ((r >> 16) & 0xFF) as u8;
}
// Mix in punch-through alphas sometimes.
p[3] = if case % 5 == 0 && (r >> 24) & 3 == 0 {
((r >> 26) & 0x7F) as u8
} else {
255
};
}
let e0 = [(rng() & 0xFF) as u8, (rng() & 0xFF) as u8, (rng() & 0xFF) as u8];
let e1 = [(rng() & 0xFF) as u8, (rng() & 0xFF) as u8, (rng() & 0xFF) as u8];
let old_block = pack_bc1(px, e0, e1);
let old_err = bc1_sse(&px, &old_block);
let (new_block, new_err) =
pack_bc1_scored(&px, e0, e1, super::bc1::psq_rgb(&px), i32::MAX).expect("unbounded");
// The projection index fit (bc1_fit_4color) is a RESTRICTED
// search: its SSE can only be >= the exhaustive fit, and only
// negligibly (rounding cross-term on far-off-line pixels; the
// corpus moves <=0.012 dB worst-case). Punch-path blocks stay
// bit-exact.
assert!(new_err >= old_err, "fast beat exhaustive?! (case {case})");
assert!(
new_err <= old_err + old_err / 100 + 32,
"projection fit degraded SSE beyond contract (case {case}): {new_err} vs {old_err}"
);
if new_block != old_block {
// Bytes may differ only when the fit differs; err must track.
assert!(new_err >= old_err);
}
// Early-abort contract: limit == err must return None (>= abort).
assert!(pack_bc1_scored(&px, e0, e1, super::bc1::psq_rgb(&px), new_err).is_none());
if new_err > 0 {
assert!(pack_bc1_scored(&px, e0, e1, super::bc1::psq_rgb(&px), new_err + 1).is_some());
}
}
}
}
#[cfg(test)]
mod mode6_projection_oracle {
use super::*;
#[test]
fn mode6_projection_matches_exhaustive() {
let mut state = 0x9E3779B97F4A7C15u64;
let mut rng = move || {
state ^= state << 13;
state ^= state >> 7;
state ^= state << 17;
state
};
for case in 0..400_000u32 {
// Production-shaped palettes: random endpoints through the same
// quantize/unquantize as try_bc7_mode6, biased toward small axes
// every few cases to stress the mono-gate boundary.
let r = rng();
let e0 = [
(r & 0xFF) as u8,
((r >> 8) & 0xFF) as u8,
((r >> 16) & 0xFF) as u8,
((r >> 24) & 0xFF) as u8,
];
let e1 = if case % 4 == 0 {
// near-degenerate: e1 within +-8 of e0 per channel
let s = rng();
let mut v = [0u8; 4];
for c in 0..4 {
let d = ((s >> (8 * c)) & 0xF) as i32 - 8;
v[c] = (e0[c] as i32 + d).clamp(0, 255) as u8;
}
v
} else {
let s = rng();
[
(s & 0xFF) as u8,
((s >> 8) & 0xFF) as u8,
((s >> 16) & 0xFF) as u8,
((s >> 24) & 0xFF) as u8,
]
};
let (q0, p0) = quantize_7p(e0);
let (q1, p1) = quantize_7p(e1);
let pal = palette_mode6(unquantize_7p(q0, p0), unquantize_7p(q1, p1));
let mut px = [[0u8; 4]; 16];
for p in px.iter_mut() {
let r = rng();
// Mix: random pixels and near-palette pixels (index-fit shape).
if r & 1 == 0 {
let k = ((r >> 1) & 15) as usize;
for c in 0..4 {
let n = ((r >> (8 + 8 * c)) & 7) as i32 - 3;
p[c] = (pal[k][c] as i32 + n).clamp(0, 255) as u8;
}
} else {
p[0] = (r >> 8) as u8;
p[1] = (r >> 16) as u8;
p[2] = (r >> 24) as u8;
p[3] = (r >> 32) as u8;
}
}
let fast = fit_indices_mode6(&px, &pal);
let slow = fit_indices_mode6_exhaustive(&px, &pal);
// Contract: the projection window is a RESTRICTED search, so its
// SSE can only be >= the exhaustive fit, and only negligibly so
// (divergence needs a pixel far off the endpoint line, where the
// rounding cross-term outweighs the t-distance — SSE-tiny by
// construction; corpus payloads move 0 cases at 0.0001 dB).
assert!(fast.1 >= slow.1, "fast beat exhaustive?! (case {case})");
assert!(
fast.1 <= slow.1 + slow.1 / 100 + 16,
"projection fit degraded SSE beyond contract (case {case}): {} vs {}",
fast.1,
slow.1
);
}
}
}
#[cfg(test)]
mod alpha_select_oracle {
use super::*;
/// Full enumeration: every (a0, a1) endpoint pair x every sample value,
/// both palette modes, unsigned domain — the selector must reproduce
/// the linear scan's argmin (strict `<`, lowest index wins ties) on all
/// ~16.7M combinations. This is a proof by exhaustion, not a sample.
#[test]
#[ignore] // ~seconds in release; run explicitly
fn alpha_select_matches_linear_exhaustive() {
for a0 in 0..=255u8 {
for a1 in 0..=255u8 {
let (palette, order): ([u8; 8], &[u8; 8]) = if a0 > a1 {
(alpha_palette6_u(a0, a1), &ALPHA_ORDER6)
} else {
(alpha_palette4_u(a0, a1), &ALPHA_ORDER4)
};
let sel = AlphaSelect::build(&palette, order);
for s in 0..=255u8 {
let mut lin = 0u8;
let mut lin_d = i32::MAX;
for (j, &p) in palette.iter().enumerate() {
let d = (p as i32 - s as i32).abs();
if d < lin_d {
lin_d = d;
lin = j as u8;
}
}
let fast = sel.select(s);
assert_eq!(
fast, lin,
"a0={a0} a1={a1} s={s} palette={palette:?}"
);
}
}
}
}
/// `round_clamp_u8` must equal `x.round().clamp(0.0, 255.0) as u8` for every
/// input the solves can produce — the whole point is that it removes a libm
/// call without moving a single result.
///
/// The sweep deliberately includes the f32 tie that makes the naive
/// `(x + 0.5)` form WRONG in f32 (`0.49999997` rounds to `1.0` on add), plus
/// exact halves, both clamp boundaries, and negatives.
#[test]
fn round_clamp_u8_matches_round_then_clamp() {
use super::super::round_clamp_u8;
let mut cases: Vec<f32> = vec![
0.0, -0.0, -0.5, 0.5, 1.5, 2.5, -1.5, 254.5, 255.0, 255.5, 256.0,
-1.0, 300.0, -300.0, 0.49999997, -0.49999997, 127.5, 128.5,
f32::MIN_POSITIVE, -f32::MIN_POSITIVE,
];
let mut state = 0x9e37_79b9_7f4a_7c15u64;
let mut next = move || {
state ^= state << 13;
state ^= state >> 7;
state ^= state << 17;
state
};
for _ in 0..200_000 {
let r = next();
// spread across the interesting range and well outside it
cases.push((r as u32 as f32 / u32::MAX as f32) * 600.0 - 50.0);
cases.push(f32::from_bits((r >> 32) as u32));
}
for x in cases {
if x.is_nan() {
continue; // the solves cannot produce NaN; det is bounded away from 0
}
let want = x.round().clamp(0.0, 255.0) as u8;
assert_eq!(round_clamp_u8(x), want, "x = {x:?} ({:#x})", x.to_bits());
}
}
/// `round_clamp_snorm` must equal `x.round().clamp(-127.0, 127.0) as i32`
/// — the signed LS refit's spelling. Ties on BOTH sides of zero matter:
/// round-half-away sends `-0.5` to `-1`, where a floor-based form would
/// send it to `0`.
#[test]
fn round_clamp_snorm_matches_round_then_clamp() {
use super::super::round_clamp_snorm;
let mut cases: Vec<f32> = vec![
0.0, -0.0, 0.5, -0.5, 1.5, -1.5, 2.5, -2.5, 126.5, -126.5, 127.0,
-127.0, 127.5, -127.5, 128.0, -300.0, 300.0, 0.49999997, -0.49999997,
f32::MIN_POSITIVE, -f32::MIN_POSITIVE, f32::INFINITY, f32::NEG_INFINITY,
];
// Every representable half-integer tie in range, plus its two bit
// neighbours (the one just below the tie is what a naive f32
// `x + 0.5` misrounds).
for k in -127i32..127 {
let tie = k as f32 + 0.5;
cases.push(tie);
cases.push(f32::from_bits(tie.to_bits() - 1));
cases.push(f32::from_bits(tie.to_bits() + 1));
}
let mut state = 0x517e_57a7_e0f3_2b1du64;
let mut next = move || {
state ^= state << 13;
state ^= state >> 7;
state ^= state << 17;
state
};
for _ in 0..200_000 {
let r = next();
cases.push((r as u32 as f32 / u32::MAX as f32) * 600.0 - 300.0);
cases.push(f32::from_bits((r >> 32) as u32));
}
for x in cases {
if x.is_nan() {
continue; // the solves cannot produce NaN; det is bounded away from 0
}
let want = x.round().clamp(-127.0, 127.0) as i32;
assert_eq!(round_clamp_snorm(x), want, "x = {x:?} ({:#x})", x.to_bits());
}
}
/// `ceil_i32` must equal `x.ceil() as i32` — both signs (truncation
/// toward zero already IS the ceiling for negative inputs), exact
/// integers (no `+1` when nothing was cut), the saturating `±2^31`
/// edges, and arbitrary bit patterns.
#[test]
fn ceil_i32_matches_ceil() {
use super::super::rdo::ceil_i32;
let mut cases: Vec<f32> = vec![
0.0, -0.0, 0.5, -0.5, 1.0, -1.0, 2.5, -2.5, 0.49999997, -0.49999997,
2147483000.0, 2147483648.0, -2147483648.0, 3e9, -3e9, 1e38, -1e38,
f32::INFINITY, f32::NEG_INFINITY, f32::MIN_POSITIVE, -f32::MIN_POSITIVE,
];
let mut state = 0xce11_a51d_2026_08_26u64;
let mut next = move || {
state ^= state << 13;
state ^= state >> 7;
state ^= state << 17;
state
};
for _ in 0..200_000 {
let r = next();
// the J values the RDO limits actually take, and far outside them
cases.push((r as u32 as f32 / u32::MAX as f32) * 4_000_000.0 - 1_000_000.0);
cases.push(f32::from_bits((r >> 32) as u32));
}
for x in cases {
if x.is_nan() {
continue; // J is a sum of finite SSEs; NaN cannot reach the limit
}
let want = x.ceil() as i32;
assert_eq!(ceil_i32(x), want, "x = {x:?} ({:#x})", x.to_bits());
}
}
/// The extrema kernels' packed-key argmin/argmax must match the scalar
/// arms' FIRST-extreme rule — §4.5 oracle debt: the `l*16 | (15-i)`
/// max-key trick was shipping untested. Ties are the whole point of the
/// sweep: two pixels with EQUAL luminance but DIFFERENT bytes make a
/// wrong tie-break visible in the returned pixel, so half the cases
/// manufacture exactly that, at random positions.
#[cfg(all(feature = "simd", target_arch = "x86_64"))]
#[test]
fn extrema_avx2_match_scalar() {
use super::super::simd;
if !simd::has_avx2() {
eprintln!("AVX2 not available; skipping");
return;
}
// Scalar references, replicated from `bc7::extrema_rgba_scalar` /
// `bc7::extrema_opaque_scalar` (private to bc7; these loops are the
// specification, strict `<` / `>` keeping the first extreme).
fn rgba_ref(px: &[[u8; 4]; 16]) -> ([u8; 4], [u8; 4]) {
let (mut min_l, mut max_l) = (i32::MAX, i32::MIN);
let (mut min_p, mut max_p) = ([0u8; 4], [255u8; 4]);
for p in px {
let l = p[0] as i32 + p[1] as i32 + p[2] as i32 + p[3] as i32;
if l < min_l {
min_l = l;
min_p = *p;
}
if l > max_l {
max_l = l;
max_p = *p;
}
}
(max_p, min_p)
}
fn opaque_ref(px: &[[u8; 4]; 16]) -> ([u8; 3], [u8; 3]) {
let (mut min_l, mut max_l) = (i32::MAX, i32::MIN);
let (mut min_rgb, mut max_rgb) = ([0u8; 3], [0u8; 3]);
for p in px {
let l = p[0] as i32 * 2 + p[1] as i32 * 3 + p[2] as i32;
if l < min_l {
min_l = l;
min_rgb = [p[0], p[1], p[2]];
}
if l > max_l {
max_l = l;
max_rgb = [p[0], p[1], p[2]];
}
}
(max_rgb, min_rgb)
}
let mut state = 0xe87a_11e5_2026_0826u64;
let mut next = move || {
state ^= state << 13;
state ^= state >> 7;
state ^= state << 17;
state
};
for case in 0..120_000u32 {
let mut px = [[0u8; 4]; 16];
match case {
0 => {} // all-zero: every pixel ties
1 => px = [[7, 31, 255, 12]; 16], // identical non-zero: same
_ => {
for p in px.iter_mut() {
let r = next();
*p = [r as u8, (r >> 8) as u8, (r >> 16) as u8, (r >> 24) as u8];
}
let i = (next() as usize) & 15;
let j = (next() as usize) & 15;
let p = px[i];
match case & 3 {
// r/b swap: r+g+b+a unchanged (an rgba tie with
// different bytes), 2r+3g+b usually not (opaque gets
// its ties from the exact copies and from birthday
// collisions in a 0..=1530 key over 120k blocks).
0 => px[j] = [p[2], p[1], p[0], p[3]],
// Exact copy: ties BOTH luminances at two positions.
2 => px[j] = p,
_ => {}
}
}
}
assert_eq!(
simd::extrema_rgba_avx2(&px),
rgba_ref(&px),
"rgba case {case} px={px:?}"
);
assert_eq!(
simd::extrema_opaque_avx2(&px),
opaque_ref(&px),
"opaque case {case} px={px:?}"
);
}
}
}