Skip to content

Commit 367a53e

Browse files
committed
wip
Signed-off-by: Joe Isaacs <[email protected]>
1 parent dcb9d39 commit 367a53e

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

vortex-file/src/tests.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1503,8 +1503,8 @@ async fn test_gpu_read_simple() -> VortexResult<()> {
15031503
.into_array();
15041504

15051505
let st = StructArray::from_fields(&[("numbers", numbers), ("floats", floats)])?;
1506-
let path = "test.vortex";
1507-
let file = File::open(path).await?;
1506+
let path = "/tmp/test-vx/test.vortex";
1507+
let file = File::create(path).await?;
15081508

15091509
let strategy = WriteStrategyBuilder::new().with_compressor(BtrBlocksCompressor {
15101510
exclude_int_dict_encoding: true,
@@ -1534,9 +1534,6 @@ async fn test_gpu_read_simple() -> VortexResult<()> {
15341534
cuda_ctx.clone(),
15351535
Arc::new(FileGpuSegmentSource::new(
15361536
vx_file.footer.segment_map().clone(),
1537-
// .iter()
1538-
// .map(|f| SegmentSpec::try_from(f).vortex_unwrap())
1539-
// .collect::<Arc<[_]>>(),
15401537
cuda_ctx.default_stream(),
15411538
file,
15421539
)),

0 commit comments

Comments
 (0)