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
17
#pragma once

#include <cudf/strings/combine.hpp>
#include <memory>
#include "rust/cxx.h"
#include "column_shim.h"

namespace cudf_shims {

std::unique_ptr<OwnedColumn> str_join(
    const OwnedColumn& col, rust::Str separator);

/// Join list elements within each row using a scalar separator.
std::unique_ptr<OwnedColumn> str_join_list_elements(
    const OwnedColumn& col, rust::Str separator);

} // namespace cudf_shims