We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81c6012 commit 2c81614Copy full SHA for 2c81614
vortex-gpu/src/rle_decompress.rs
@@ -236,9 +236,6 @@ mod tests {
236
let ctx = CudaContext::new(0).unwrap();
237
ctx.set_blocking_synchronize().unwrap();
238
let unpacked = cuda_rle_decompress(&array, ctx).unwrap();
239
- assert_eq!(
240
- primitive_array.as_slice::<u32>(),
241
- unpacked.as_slice::<u32>()
242
- );
+ assert_eq!(primitive_array.as_slice::<T>(), unpacked.as_slice::<T>());
243
}
244
0 commit comments