Package ai.rapids.cudf
Class TableDebug
java.lang.Object
ai.rapids.cudf.TableDebug
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
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. -
Method Summary
Modifier and TypeMethodDescriptionstatic 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
Print the contents of a table.static TableDebug
get()
-
Field Details
-
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. Supported log levels: debug (default) info warn error- See Also:
-
-
Method Details
-
builder
-
get
-
debug
Print the contents of a table. Note that this should never be called from production code, as it is very slow. Also note that this is not production code. You might need/want to update how the data shows up or add in support for more types as this really is just for debugging.- Parameters:
name
- the name of the table to print out.table
- the table to print out.
-
debug
Print the contents of a column. Note that this should never be called from production code, as it is very slow. Also note that this is not production code. You might need/want to update how the data shows up or add in support for more types as this really is just for debugging.- Parameters:
name
- the name of the column to print out.col
- the column to print out.
-
debug
Print the contents of a column. Note that this should never be called from production code, as it is very slow. Also note that this is not production code. You might need/want to update how the data shows up or add in support for more types as this really is just for debugging.- Parameters:
name
- the name of the column to print out.hostCol
- the column to print out.
-