Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
9b3d53b
build(cmake): split libcuopt into cuopt_base / cuopt_routing / cuopt_…
ramakrishnap-nv Jul 23, 2026
94755a0
build(cmake): fix component library linking and include propagation
ramakrishnap-nv Jul 24, 2026
0390d40
build(conda): verify component static libs in libcuopt package_contents
ramakrishnap-nv Jul 24, 2026
efc5256
build(cmake): switch component libs to SHARED and move gRPC bridge in…
ramakrishnap-nv Jul 27, 2026
08c8db4
build(cmake): extract gRPC bridge into libcuopt_grpc.so
ramakrishnap-nv Jul 27, 2026
ec81ebc
Merge origin/main into feat/split-routing-lp-libs
ramakrishnap-nv Jul 27, 2026
a54e62a
chore: fix copyright year in routing CMakeLists.txt
ramakrishnap-nv Jul 27, 2026
6c24d1f
fix(ci): exclude component libs from auditwheel repair in cuopt wheel
ramakrishnap-nv Jul 27, 2026
705167f
fix(cmake): include gRPC sources in cuopt_objs for cuopt_static test …
ramakrishnap-nv Jul 27, 2026
a42419b
fix(cmake): link cuopt_cli against cuopt_grpc for runtime symbol reso…
ramakrishnap-nv Jul 28, 2026
776bd3b
fix(cli): use is_remote_execution_enabled() not memory_backend==CPU
ramakrishnap-nv Jul 28, 2026
1bc38f7
Merge origin/main into feat/split-routing-lp-libs
ramakrishnap-nv Jul 28, 2026
8511bd0
style: apply clang-format to cuopt_cli.cpp
ramakrishnap-nv Jul 28, 2026
f2b22e7
fix(build): link nccl_external into cuopt_lp
ramakrishnap-nv Jul 28, 2026
90ee992
fix(build): break circular libcuopt_lp → libcuopt_grpc symbol dependency
ramakrishnap-nv Jul 29, 2026
a83e0f4
fix(build): add libcuopt_grpc.so anchor to umbrella DT_NEEDED
ramakrishnap-nv Jul 29, 2026
0f3b7e1
fix(build): load libcuopt_grpc.so on demand via dlopen for remote exe…
ramakrishnap-nv Jul 29, 2026
b872bfb
style: apply clang-format and fix copyright years
ramakrishnap-nv Jul 29, 2026
7b32d1b
fix(build): allow shlib undefined for split libs, ignore pypi in link…
ramakrishnap-nv Jul 30, 2026
80c1c34
fix(build): add cuopt_lp/cuopt_base to pip RPATH in libcuopt CMakeLists
ramakrishnap-nv Jul 30, 2026
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
4 changes: 4 additions & 0 deletions ci/build_wheel_cuopt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ EXCLUDE_ARGS=(
--exclude "libcusolver.so.*"
--exclude "libcusparse.so.*"
--exclude "libcuopt.so"
--exclude "libcuopt_base.so"
--exclude "libcuopt_routing.so"
--exclude "libcuopt_lp.so"
--exclude "libcuopt_grpc.so"
--exclude "librapids_logger.so"
--exclude "librmm.so"
)
Expand Down
2 changes: 1 addition & 1 deletion ci/test_skills_assets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ if [[ -n "${CONDA_PREFIX:-}" ]]; then
base=$(basename "$cfile" .c)
rel="${cfile#"$REPO_ROOT/"}"
log "Building and running C asset: $rel"
if ! (cd "$dir" && "${CC}" -I"${INCLUDE_PATH}" -L"${LIB_PATH}" -o "$base" "$(basename "$cfile")" -lcuopt); then
if ! (cd "$dir" && "${CC}" -I"${INCLUDE_PATH}" -L"${LIB_PATH}" -o "$base" "$(basename "$cfile")" -lcuopt -lcuopt_lp); then
FAILED+=("$rel (build)")
log "FAIL: $rel (build)"
continue
Expand Down
4 changes: 4 additions & 0 deletions conda/recipes/libcuopt/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,10 @@ outputs:
- package_contents:
files:
- lib/libcuopt.so
- lib/libcuopt_base.so
- lib/libcuopt_routing.so
- lib/libcuopt_lp.so
- lib/libcuopt_grpc.so
- bin/cuopt_cli
- bin/cuopt_grpc_server
about:
Expand Down
Loading
Loading