Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

column: calculate null_count before release()ing the cudf::column #11365

Commits on Jul 27, 2022

  1. column: calculate null_count before release()ing the cudf::column

    release() sets the null_count of a column to zero, so previously
    asking for the null_count provided an incorrect value. Fortunately
    this never exhibited in the final column, since Column.__init__ always
    ignores the provided null_count and computes it from the null_mask (if
    one is given).
    wence- committed Jul 27, 2022
    Configuration menu
    Copy the full SHA
    11a818d View commit details
    Browse the repository at this point in the history