Skip to content

Commit

Permalink
Update path to concatenate_rows in java and python sides
Browse files Browse the repository at this point in the history
  • Loading branch information
ttnghia committed May 13, 2021
1 parent 216a8ab commit afce24e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion java/src/main/native/src/ColumnVectorJni.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <cudf/reshape.hpp>
#include <cudf/utilities/bit.hpp>
#include <cudf/detail/interop.hpp>
#include <cudf/lists/concatenate_rows.hpp>
#include <cudf/lists/combine.hpp>
#include <cudf/lists/detail/concatenate.hpp>
#include <cudf/lists/lists_column_view.hpp>
#include <cudf/scalar/scalar_factories.hpp>
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/cudf/_lib/cpp/lists/concatenate_rows.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ from libcpp.memory cimport unique_ptr
from cudf._lib.cpp.column.column cimport column
from cudf._lib.cpp.table.table_view cimport table_view

cdef extern from "cudf/lists/concatenate_rows.hpp" namespace \
cdef extern from "cudf/lists/combine.hpp" namespace \
"cudf::lists" nogil:
cdef unique_ptr[column] concatenate_rows(
const table_view input_table
Expand Down

0 comments on commit afce24e

Please sign in to comment.