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
//! Dequant-coupled APR v2 tests (issue #2231).
//!
//! These tests exercise the *dequantizing* `get_tensor_as_f32` accessor (the
//! `AprV2DequantExt` extension re-attached in `aprender-core`), the f16-scaled
//! APR-Q4 `dequantize_q4` helper, and the core-only `test_factory` pygmy
//! builders. They were SEVERED from the sovereign `apr-format` leaf (which can
//! only test pure container I/O) and live here next to the extension.
//!
//! This module reproduces the original flat `v2::tests` symbol scope that the
//! moved files reach via `super::*` / `super::super::*`: the leaf v2 namespace
//! plus the dequant accessor + helper.
// Re-create the flat-scope surface the moved test files expect from `super::*`
// (the original `v2::tests` scope: the leaf v2 namespace + the formerly
// flat-scope crc32 / f16 helpers + the dequant accessor & helper).
pub use crate;
pub use crate*;
pub use crc32;
pub use ;
// The dequant-coupled test sub-chain (mirrors the original `v2::tests`
// declarations, now rooted here instead of in the leaf).