Expand description
§cudf-cxx
Low-level cxx bridge between Rust and libcudf’s C++ API.
This crate provides the raw FFI layer. Users should prefer the safe
cudf crate instead.
§Architecture
Each libcudf module has a corresponding Rust bridge file and C++ shim:
| Rust bridge | C++ shim | libcudf module |
|---|---|---|
types.rs | types_shim.h/cpp | cudf/types.hpp |
column.rs | column_shim.h/cpp | cudf/column/ |
table.rs | table_shim.h/cpp | cudf/table/ |