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

[WIP] Windows compilation #1298

Draft
wants to merge 29 commits into
base: branch-23.08
Choose a base branch
from

Commits on Jul 4, 2023

  1. Configuration menu
    Copy the full SHA
    bf5d799 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    db73b0e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cb7e999 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c8e15b9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b9a18f4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8d04f09 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1dce2bd View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    179dbe7 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8bae4e2 View commit details
    Browse the repository at this point in the history
  10. fix auto* to auto

    karthikeyann committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    ba7342d View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    3e0890f View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2023

  1. fix dlopen dll

    karthikeyann committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    07823b8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3bf40a4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    479c03a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    21294aa View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f97dc96 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6b1bb46 View commit details
    Browse the repository at this point in the history
  7. cmake-format style fix

    karthikeyann committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    71435c1 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2023

  1. v23.10

    raydouglass committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    c856005 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2023

  1. Configuration menu
    Copy the full SHA
    0d95674 View commit details
    Browse the repository at this point in the history
  2. Merge pull request rapidsai#1309 from vyasr/branch-23.10-merge-23.08

    Replaces rapidsai#1308 
    
    Authors:
       - Vyas Ramasubramani (https://github.com/vyasr)
    
    Approvers:
       - Mark Harris (https://github.com/harrism)
       - AJ Schmidt (https://github.com/ajschmidt8)
    ajschmidt8 committed Jul 25, 2023
    Configuration menu
    Copy the full SHA
    8efecbc View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2023

  1. Configuration menu
    Copy the full SHA
    ce45193 View commit details
    Browse the repository at this point in the history
  2. Merge pull request rapidsai#1312 from vyasr/branch-23.10-merge-23.08

    Branch 23.10 merge 23.08
    raydouglass committed Jul 26, 2023
    Configuration menu
    Copy the full SHA
    5cbb248 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2023

  1. Use fetch_rapids.cmake. (rapidsai#1319)

    This PR migrates RMM to use `fetch_rapids.cmake` like most RAPIDS repos. This makes it easier to define a single source if the upstream branch of rapids-cmake needs to change for testing, like in rapidsai#1247.
    
    Authors:
      - Bradley Dice (https://github.com/bdice)
    
    Approvers:
      - Ray Douglass (https://github.com/raydouglass)
      - Robert Maynard (https://github.com/robertmaynard)
    
    URL: rapidsai#1319
    bdice committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    c4618eb View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2023

  1. Update to Cython 3.0.0 (rapidsai#1313)

    This PR contains the minimal set of changes to compile using Cython 3 without warnings. Future PRs can be made to take advantage of new or improved features.
    
    The specific changes are:
    - Ensuring `nogil` always comes after `except`. `except * nogil` is a compile-time error in Cython 3
    - Adding `noexcept` or `except *` to any `cdef ` functions missing them. In Cython 0.29 these would default to `noexcept`, which meant that exceptions would not be properly propagated. In Cython 3.0.0, these default to `except *`, which incurs a performance penalty for reacquiring the GIL to check the exception value even for `nogil` functions. Being explicit here is important.
    
    There are a large number of outstanding warnings due to NVIDIA/cuda-python#44. cuda-python for CUDA 12 has the necessary fix, but we will need a cuda-python 11.8.* bugfix with a backport to make those warnings go away.
    
    Authors:
      - Vyas Ramasubramani (https://github.com/vyasr)
    
    Approvers:
      - Ashwin Srinath (https://github.com/shwina)
      - Lawrence Mitchell (https://github.com/wence-)
      - Ray Douglass (https://github.com/raydouglass)
    
    URL: rapidsai#1313
    vyasr committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    2376e08 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2023

  1. Treat warnings as errors in Python documentation (rapidsai#1316)

    This will allow us to more easily audit the quality of our docs in CI going forward.
    
    Authors:
      - Vyas Ramasubramani (https://github.com/vyasr)
    
    Approvers:
      - Bradley Dice (https://github.com/bdice)
      - Lawrence Mitchell (https://github.com/wence-)
      - AJ Schmidt (https://github.com/ajschmidt8)
    
    URL: rapidsai#1316
    vyasr committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    cd37245 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2023

  1. Merge pull request rapidsai#1323 from rapidsai/branch-23.08

    Forward-merge branch-23.08 to branch-23.10
    GPUtester committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    934b8d9 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2023

  1. Fix missing jQuery error in docs (rapidsai#1321)

    The latest versions `4.1` and `4.0` of `sphinxcontrib-jquery` have an issue with jQuery installed currently in sphinx. This is causing the search functionality to fail so I've pinned the version to `3.0.0`, this resolves the issue.
    
    Authors:
       - Jake Awe (https://github.com/AyodeAwe)
    
    Approvers:
       - https://github.com/jakirkham
       - AJ Schmidt (https://github.com/ajschmidt8)
    AyodeAwe committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    663e659 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2023

  1. Configuration menu
    Copy the full SHA
    7b47ad1 View commit details
    Browse the repository at this point in the history