cudf 0.3.1

Safe Rust bindings for NVIDIA libcudf -- GPU-accelerated DataFrame operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! I/O operations for reading and writing GPU DataFrames.
//!
//! | Format | Read | Write |
//! |--------|------|-------|
//! | Parquet | `ParquetReader` | `ParquetWriter` |
//! | CSV | `CsvReader` | `CsvWriter` |
//! | JSON | `JsonReader` | `JsonWriter` |
//! | ORC | `OrcReader` | `OrcWriter` |
//! | Avro | `AvroReader` | - |

pub mod avro;
pub mod csv;
pub mod json;
pub mod orc;
pub mod parquet;