Skip to content

Commit 004fed1

Browse files
committed
tbb fix
1 parent d6063b8 commit 004fed1

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

dependencies.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ files:
136136
key: requires
137137
includes:
138138
- build_common
139+
- depends_on_papilo_deps
139140
- depends_on_libraft_headers
140141
- depends_on_librmm
141142
- depends_on_rapids_logger
@@ -147,6 +148,7 @@ files:
147148
table: project
148149
includes:
149150
- cuda_wheels
151+
- depends_on_papilo_deps
150152
- depends_on_libraft_headers
151153
- depends_on_librmm
152154
- depends_on_rapids_logger
@@ -273,6 +275,12 @@ dependencies:
273275
- *rapids_build_backend
274276
- setuptools
275277
- wheel
278+
depends_on_papilo_deps:
279+
common:
280+
- output_types: [conda, requirements, pyproject]
281+
packages:
282+
- tbb-devel
283+
- boost
276284
build_common:
277285
common:
278286
- output_types: [conda, requirements, pyproject]

python/cuopt/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ project(
3333

3434
find_package(cuopt ${cuopt_version})
3535
find_package(mps_parser ${cuopt_version})
36-
find_package(TBB REQUIRED)
3736

3837
include(rapids-cython-core)
3938
rapids_cython_init()

python/libcuopt/pyproject.toml

100644100755
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ classifiers = [
4343
"Programming Language :: Python :: 3.13",
4444
]
4545
dependencies = [
46+
"boost",
4647
"cuopt-mps-parser==25.8.*,>=0.0.0a0",
4748
"librmm==25.8.*,>=0.0.0a0",
4849
"nvidia-cublas",
@@ -51,6 +52,7 @@ dependencies = [
5152
"nvidia-cusparse",
5253
"nvidia-nvtx",
5354
"rapids-logger==0.1.*,>=0.0.0a0",
55+
"tbb-devel",
5456
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
5557

5658
[project.urls]
@@ -93,9 +95,11 @@ build-backend = "scikit_build_core.build"
9395
dependencies-file = "../../dependencies.yaml"
9496
matrix-entry = "cuda_suffixed=true;use_cuda_wheels=true"
9597
requires = [
98+
"boost",
9699
"cmake>=3.30.4",
97100
"cuopt-mps-parser==25.8.*,>=0.0.0a0",
98101
"librmm==25.8.*,>=0.0.0a0",
99102
"ninja",
100103
"rapids-logger==0.1.*,>=0.0.0a0",
104+
"tbb-devel",
101105
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.

0 commit comments

Comments
 (0)