Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ class block_shuffle
up(flat_id, input, prev, storage);

// Update block prefix
block_suffix = storage->buffer.get_unsafe_array()[BlockSize - 1];
block_suffix = storage.buffer.get_unsafe_array()[BlockSize - 1];
}

/// \brief The thread block rotates a blocked arrange of input items,
Expand Down Expand Up @@ -534,7 +534,7 @@ class block_shuffle
this->down(flat_id, input, next, storage);

// Update block prefixstorage_->
block_prefix = storage->next[0];
block_prefix = storage.buffer.get_unsafe_array()[0];
}
};

Expand Down