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

Fix #9247: Prevent Numba Performance Warnings in cuDF #9320

Merged
merged 1 commit into from
Oct 5, 2021

Commits on Sep 28, 2021

  1. Prevent Numba Performance Warnings in cuDF

    Numba 0.54 introduces performance warnings whenever a kernel is launched
    with low occupancy. Certain operations in cuDF can indirectly cause this
    warning to be emitted, for example `DataFrame.iloc` (which one would not
    expect to be particularly efficient anyway). This message could be
    disconcerting for users and appear in a lot of workflows; therefore,
    this commit configures Numba at cuDF import time to suppress the low
    occupancy warning.
    
    Fixes rapidsai#9247.
    gmarkall committed Sep 28, 2021
    Configuration menu
    Copy the full SHA
    ccd02cf View commit details
    Browse the repository at this point in the history