We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 308c4fa commit e3f0aeeCopy full SHA for e3f0aee
1 file changed
vortex-cuda/src/dynamic_dispatch/plan_builder.rs
@@ -42,7 +42,6 @@ use super::MaterializedStage;
42
use super::PTypeTag;
43
use super::SMEM_TILE_SIZE;
44
use super::ScalarOp;
45
-use super::ScalarOp_ScalarOpCode_ALP;
46
use super::SourceOp;
47
use super::ptype_to_tag;
48
use super::tag_to_ptype;
@@ -395,7 +394,7 @@ impl FusedPlan {
395
394
let mut scalar_ops: Vec<ScalarOp> = Vec::with_capacity(stage.scalar_ops.len());
396
for (mut op, patches) in stage.scalar_ops.clone() {
397
if let Some(patches) = &patches {
398
- let (ptr, bufs) = upload_patches(&patches, ctx)?;
+ let (ptr, bufs) = upload_patches(patches, ctx)?;
399
op.params.alp.patches_ptr = ptr;
400
device_buffers.extend(bufs);
401
}
0 commit comments