1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//! # 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`](../cudf/index.html) 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/` |
#![doc(hidden)]
pub mod aggregation;
pub mod binaryop;
pub mod column;
pub mod concatenate;
pub mod copying;
pub mod datetime;
pub mod dictionary;
pub mod filling;
pub mod groupby;
pub mod hashing;
pub mod interop;
pub mod io;
pub mod join;
pub mod json;
pub mod label_bins;
pub mod lists;
pub mod merge;
pub mod null_mask;
pub mod partitioning;
pub mod quantiles;
pub mod reduction;
pub mod replace;
pub mod reshape;
pub mod rolling;
pub mod round;
pub mod scalar;
pub mod search;
pub mod sorting;
pub mod stream_compaction;
pub mod strings;
pub mod structs;
pub mod table;
pub mod timezone;
pub mod transform;
pub mod transpose;
pub mod types;
pub mod unary;