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 70c0561 commit 02b2444Copy full SHA for 02b2444
vortex-gpu/src/rle_decompress.rs
@@ -21,7 +21,7 @@ use vortex_fastlanes::RLEArray;
21
22
pub fn cuda_rle_decompress(rle: &RLEArray, ctx: Arc<CudaContext>) -> VortexResult<ArrayRef> {
23
match_each_native_ptype!(rle.values().dtype().as_ptype(), |V| {
24
- match_each_unsigned_integer_ptype!(rle.values().dtype().as_ptype(), |O| {
+ match_each_unsigned_integer_ptype!(rle.values_idx_offsets().dtype().as_ptype(), |O| {
25
// RLE indices are always u16 (or u8 if downcasted).
26
match rle.indices().dtype().as_ptype() {
27
PType::U8 => cuda_rle_decompress_typed(
0 commit comments