public class TableDebug extends Object
Modifier and Type | Class and Description |
---|---|
static class |
TableDebug.Builder |
static class |
TableDebug.Output |
Modifier and Type | Field and Description |
---|---|
static String |
OUTPUT_STREAM
Specify one of
-Dai.rapids.cudf.debug.output=stderr to print directly to standard error (default)
-Dai.rapids.cudf.debug.output=stdout to print directly to standard output
-Dai.rapids.cudf.debug.output=log[_level] to redirect to a logging subsystem that can
further be
configured.
|
Modifier and Type | Method and Description |
---|---|
static TableDebug.Builder |
builder() |
void |
debug(String name,
ColumnView col)
Print the contents of a column.
|
void |
debug(String name,
HostColumnVectorCore hostCol)
Print the contents of a column.
|
void |
debug(String name,
Table table)
Print the contents of a table.
|
static TableDebug |
get() |
public static final String OUTPUT_STREAM
public static TableDebug.Builder builder()
public static TableDebug get()
public void debug(String name, Table table)
name
- the name of the table to print out.table
- the table to print out.public void debug(String name, ColumnView col)
name
- the name of the column to print out.col
- the column to print out.public void debug(String name, HostColumnVectorCore hostCol)
name
- the name of the column to print out.hostCol
- the column to print out.Copyright © 2024. All rights reserved.