|
2 | 2 | // SPDX-FileCopyrightText: Copyright the Vortex contributors |
3 | 3 |
|
4 | 4 | use std::fs::File; |
5 | | -use std::io::stdout; |
6 | 5 | use std::io::Write; |
| 6 | +use std::io::stdout; |
7 | 7 | use std::path::PathBuf; |
8 | 8 | use std::time::Duration; |
9 | 9 |
|
| 10 | +use bench_vortex::Engine; |
| 11 | +use bench_vortex::Format; |
| 12 | +use bench_vortex::Target; |
10 | 13 | use bench_vortex::compress::bench as compress; |
11 | 14 | use bench_vortex::compress::bench::CompressMeasurements; |
12 | 15 | use bench_vortex::compress::bench::CompressOp; |
| 16 | +use bench_vortex::datasets::Dataset; |
13 | 17 | use bench_vortex::datasets::struct_list_of_ints::StructListOfInts; |
14 | 18 | use bench_vortex::datasets::taxi_data::TaxiData; |
15 | 19 | use bench_vortex::datasets::tpch_l_comment::TPCHLCommentCanonical; |
16 | 20 | use bench_vortex::datasets::tpch_l_comment::TPCHLCommentChunked; |
17 | | -use bench_vortex::datasets::Dataset; |
| 21 | +use bench_vortex::display::DisplayFormat; |
18 | 22 | use bench_vortex::display::print_measurements_json; |
19 | 23 | use bench_vortex::display::render_table; |
20 | | -use bench_vortex::display::DisplayFormat; |
21 | 24 | use bench_vortex::downloadable_dataset::DownloadableDataset; |
22 | 25 | use bench_vortex::measurements::CompressionTimingMeasurement; |
23 | 26 | use bench_vortex::measurements::CustomUnitMeasurement; |
| 27 | +use bench_vortex::public_bi::PBI_DATASETS; |
24 | 28 | use bench_vortex::public_bi::PBIDataset::Arade; |
25 | 29 | use bench_vortex::public_bi::PBIDataset::Bimbo; |
26 | 30 | use bench_vortex::public_bi::PBIDataset::CMSprovider; |
27 | 31 | use bench_vortex::public_bi::PBIDataset::Euro2016; |
28 | 32 | use bench_vortex::public_bi::PBIDataset::Food; |
29 | 33 | use bench_vortex::public_bi::PBIDataset::HashTags; |
30 | | -use bench_vortex::public_bi::PBI_DATASETS; |
31 | 34 | use bench_vortex::setup_logging_and_tracing; |
32 | 35 | use bench_vortex::utils::new_tokio_runtime; |
33 | | -use bench_vortex::Engine; |
34 | | -use bench_vortex::Format; |
35 | | -use bench_vortex::Target; |
36 | 36 | use clap::Parser; |
37 | 37 | use indicatif::ProgressBar; |
38 | 38 | use itertools::Itertools; |
39 | 39 | use regex::Regex; |
40 | 40 | use tokio::runtime::Runtime; |
| 41 | +use vortex::array::Array; |
| 42 | +use vortex::array::IntoArray; |
41 | 43 | use vortex::array::arrays::ChunkedArray; |
42 | 44 | use vortex::array::arrays::ChunkedVTable; |
43 | 45 | use vortex::array::builders::builder_with_capacity; |
44 | | -use vortex::array::Array; |
45 | | -use vortex::array::IntoArray; |
46 | 46 | use vortex::utils::aliases::hash_map::HashMap; |
47 | 47 |
|
48 | 48 | #[derive(Parser, Debug)] |
|
0 commit comments