Skip to content

Commit e3f0aee

Browse files
committed
fix: remove broken match patterns, clippy fixes, unused import
Signed-off-by: Alexander Droste <alexander.droste@protonmail.com>
1 parent 308c4fa commit e3f0aee

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

vortex-cuda/src/dynamic_dispatch/plan_builder.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ use super::MaterializedStage;
4242
use super::PTypeTag;
4343
use super::SMEM_TILE_SIZE;
4444
use super::ScalarOp;
45-
use super::ScalarOp_ScalarOpCode_ALP;
4645
use super::SourceOp;
4746
use super::ptype_to_tag;
4847
use super::tag_to_ptype;
@@ -395,7 +394,7 @@ impl FusedPlan {
395394
let mut scalar_ops: Vec<ScalarOp> = Vec::with_capacity(stage.scalar_ops.len());
396395
for (mut op, patches) in stage.scalar_ops.clone() {
397396
if let Some(patches) = &patches {
398-
let (ptr, bufs) = upload_patches(&patches, ctx)?;
397+
let (ptr, bufs) = upload_patches(patches, ctx)?;
399398
op.params.alp.patches_ptr = ptr;
400399
device_buffers.extend(bufs);
401400
}

0 commit comments

Comments
 (0)