cudf-cxx 0.3.1

cxx-based FFI bridge between Rust and NVIDIA libcudf C++ API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <cudf/strings/split/partition.hpp>
#include <memory>
#include "rust/cxx.h"
#include "column_shim.h"
#include "table_shim.h"

namespace cudf_shims {

std::unique_ptr<OwnedTable> str_partition(
    const OwnedColumn& col, rust::Str delimiter);
std::unique_ptr<OwnedTable> str_rpartition(
    const OwnedColumn& col, rust::Str delimiter);

} // namespace cudf_shims