Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions cpp/doxygen/developer_guide/DEVELOPER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -485,8 +485,14 @@ examples.

**Things that libcudf should not validate**:
- Integer overflow
- Ensuring that outputs will not exceed the [2GB size](#cudfsize_type) limit for a given set of
inputs
- Ensuring that outputs will not exceed the [`size_type`](#cudfsize_type) row count limit for a
given set of inputs

This policy describes libcudf's default behavior. Some APIs offer opt-in overflow-aware variants for
callers that need strict semantics, such as the `SUM_OVERFLOW` aggregation, which reports
overflow through an output flag, and the overflow-checking AST arithmetic operators
(`ADD_OVERFLOW`, `SUB_OVERFLOW`, and similar) that raise on overflow.
These are explicit, caller-selected behaviors rather than validation performed on every API.


## libcudf expects nested types to have sanitized null masks
Expand Down
Loading