diff options
Diffstat (limited to 'candle-core/tests/quantized_tests.rs')
-rw-r--r-- | candle-core/tests/quantized_tests.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/candle-core/tests/quantized_tests.rs b/candle-core/tests/quantized_tests.rs index d178b89b..4fd5e90c 100644 --- a/candle-core/tests/quantized_tests.rs +++ b/candle-core/tests/quantized_tests.rs @@ -1,11 +1,10 @@ use candle_core::{ quantized::{self, GgmlDType}, + test_utils::to_vec2_round, Device, Result, Tensor, }; use quantized::{k_quants, GgmlType}; -mod test_utils; use rand::prelude::*; -use test_utils::to_vec2_round; const GGML_TEST_SIZE: usize = 32 * 128; |