-
Notifications
You must be signed in to change notification settings - Fork 27
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
[DO NOT MERGE] Test Python limited API compilation #278
base: branch-24.10
Are you sure you want to change the base?
Conversation
cugraph-ops fix PR here: https://github.com/rapidsai/cugraph-ops/pull/637 |
@vyasr is your intention to merge this into the repo, or just open this PR so you can validate the change in CI? |
@trxcllnt this is just for testing, and to make it easier to track changes in a way that's visible to others (and also to help collaboration since setting up an environment for testing this is a bit nontrivial). Hope that's all right. I'll mark the PR as DO NOT MERGE to clearly indicate that this isn't just temporarily in draft, it'll never be opened. |
@@ -15,7 +15,8 @@ repos: | |||
- name: rmm | |||
sub_dir: python/rmm | |||
depends: [rmm] | |||
args: {cmake: -DFIND_RMM_CPP=ON} | |||
args: {cmake: -DFIND_RMM_CPP=ON -DCMAKE_CXX_FLAGS="'-DPy_LIMITED_API=0x030B0000 -DCYTHON_LIMITED_API=1'"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
args: {cmake: -DFIND_RMM_CPP=ON -DCMAKE_CXX_FLAGS="'-DPy_LIMITED_API=0x030B0000 -DCYTHON_LIMITED_API=1'"} | |
args: {cmake: -DFIND_RMM_CPP=ON -DCMAKE_CXX_FLAGS="-DPy_LIMITED_API=0x030B0000 -DCYTHON_LIMITED_API=1"} |
@@ -84,11 +85,11 @@ repos: | |||
- name: pylibraft | |||
sub_dir: python/pylibraft | |||
depends: [raft] | |||
args: {cmake: -DFIND_RAFT_CPP=ON} | |||
args: {cmake: -DFIND_RAFT_CPP=ON -DCMAKE_CXX_FLAGS="'-DPy_LIMITED_API=0x030B0000 -DCYTHON_LIMITED_API=1'"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
args: {cmake: -DFIND_RAFT_CPP=ON -DCMAKE_CXX_FLAGS="'-DPy_LIMITED_API=0x030B0000 -DCYTHON_LIMITED_API=1'"} | |
args: {cmake: -DFIND_RAFT_CPP=ON -DCMAKE_CXX_FLAGS="-DPy_LIMITED_API=0x030B0000 -DCYTHON_LIMITED_API=1"} |
- name: raft-dask | ||
sub_dir: python/raft-dask | ||
depends: [raft] | ||
args: {cmake: -DFIND_RAFT_CPP=ON} | ||
args: {cmake: -DFIND_RAFT_CPP=ON -DCMAKE_CXX_FLAGS="'-DPy_LIMITED_API=0x030B0000 -DCYTHON_LIMITED_API=1'"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
args: {cmake: -DFIND_RAFT_CPP=ON -DCMAKE_CXX_FLAGS="'-DPy_LIMITED_API=0x030B0000 -DCYTHON_LIMITED_API=1'"} | |
args: {cmake: -DFIND_RAFT_CPP=ON -DCMAKE_CXX_FLAGS="-DPy_LIMITED_API=0x030B0000 -DCYTHON_LIMITED_API=1"} |
682e09a
to
c9791a4
Compare
/ok to test |
This PR is leveraging the convenience of the devcontainer framework for having a long-lived test of this functionality exist in a reproducible fashion.