Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions benchmarks/compress-bench/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ use vortex_bench::Target;
use vortex_bench::compress::CompressMeasurements;
use vortex_bench::compress::CompressOp;
use vortex_bench::compress::Compressor;
use vortex_bench::compress::READ_PROJECTION_COLUMNS;
use vortex_bench::compress::READ_PROJECTION_ROOT_COLUMNS;
use vortex_bench::compress::benchmark_compress;
use vortex_bench::compress::benchmark_decompress;
use vortex_bench::compress::calculate_ratios;
Expand Down Expand Up @@ -136,13 +134,14 @@ async fn run_compress(
StructListOfInts::new(100, 1000, 50),
StructListOfInts::new(1000, 1000, 50),
StructListOfInts::new(10000, 1000, 50),
// See https://github.com/vortex-data/vortex/issues/8330
// Very wide file: project a fixed 10k columns out of 100k, across 10 chunks.
StructListOfInts::new_with_projection(
READ_PROJECTION_ROOT_COLUMNS,
1000,
10,
Some(READ_PROJECTION_COLUMNS),
),
// StructListOfInts::new_with_projection(
// READ_PROJECTION_ROOT_COLUMNS,
// 1000,
// 10,
// Some(READ_PROJECTION_COLUMNS),
// ),
];

let datasets: Vec<&dyn Dataset> = [
Expand Down
Loading