Skip to content

Commit 02b2444

Browse files
committed
value
Signed-off-by: Robert Kruszewski <[email protected]>
1 parent 70c0561 commit 02b2444

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vortex-gpu/src/rle_decompress.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use vortex_fastlanes::RLEArray;
2121

2222
pub fn cuda_rle_decompress(rle: &RLEArray, ctx: Arc<CudaContext>) -> VortexResult<ArrayRef> {
2323
match_each_native_ptype!(rle.values().dtype().as_ptype(), |V| {
24-
match_each_unsigned_integer_ptype!(rle.values().dtype().as_ptype(), |O| {
24+
match_each_unsigned_integer_ptype!(rle.values_idx_offsets().dtype().as_ptype(), |O| {
2525
// RLE indices are always u16 (or u8 if downcasted).
2626
match rle.indices().dtype().as_ptype() {
2727
PType::U8 => cuda_rle_decompress_typed(

0 commit comments

Comments
 (0)