Skip to content

Commit 2c81614

Browse files
committed
test
Signed-off-by: Robert Kruszewski <[email protected]>
1 parent 81c6012 commit 2c81614

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

vortex-gpu/src/rle_decompress.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,6 @@ mod tests {
236236
let ctx = CudaContext::new(0).unwrap();
237237
ctx.set_blocking_synchronize().unwrap();
238238
let unpacked = cuda_rle_decompress(&array, ctx).unwrap();
239-
assert_eq!(
240-
primitive_array.as_slice::<u32>(),
241-
unpacked.as_slice::<u32>()
242-
);
239+
assert_eq!(primitive_array.as_slice::<T>(), unpacked.as_slice::<T>());
243240
}
244241
}

0 commit comments

Comments
 (0)