cudf-cxx 0.2.0

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/repeat_strings.hpp>
#include <memory>
#include "rust/cxx.h"
#include "column_shim.h"

namespace cudf_shims {

std::unique_ptr<OwnedColumn> str_repeat(
    const OwnedColumn& col, int32_t count);

/// Repeat each string by the count in a per-row column.
std::unique_ptr<OwnedColumn> str_repeat_per_row(
    const OwnedColumn& col, const OwnedColumn& counts);

} // namespace cudf_shims