Skip to content

Commit

Permalink
Merge pull request rapidsai#14603 from rapidsai/branch-23.12
Browse files Browse the repository at this point in the history
[HOTFIX] `v23.12.01`
  • Loading branch information
raydouglass authored Dec 8, 2023
2 parents c1d3073 + fd2f6a6 commit fba06e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/src/io/orc/writer_impl.cu
Original file line number Diff line number Diff line change
Expand Up @@ -2137,7 +2137,8 @@ stripe_dictionaries build_dictionaries(orc_table_view& orc_table,
}
}
}
stripe_dicts.host_to_device_async(stream);
// Synchronize to ensure the copy is complete before we clear `map_slots`
stripe_dicts.host_to_device_sync(stream);

gpu::collect_map_entries(stripe_dicts, stream);
gpu::get_dictionary_indices(stripe_dicts, orc_table.d_columns, stream);
Expand Down

0 comments on commit fba06e9

Please sign in to comment.