Open
Description
cudf currently has many APIs that take in std::vector
as one of its input parameters. For example:
cudf/cpp/include/cudf/table/table_view.hpp
Line 235 in c01a2a4
We should replace the std::vector
parameter by host_span
wherever possible.