Skip to content

Commit 105e913

Browse files
committed
revert cuda-cupy changes and update attributes
1 parent a27fb80 commit 105e913

File tree

3 files changed

+1
-23
lines changed

3 files changed

+1
-23
lines changed

python/cuopt/cuopt/linear_programming/problem.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -574,10 +574,6 @@ class Problem:
574574
----------
575575
Name : str
576576
Name of the model.
577-
vars : list
578-
List of variables in the problem.
579-
constrs : list
580-
List of constraints in the problem.
581577
ObjSense : sense
582578
Objective sense (MINIMIZE or MAXIMIZE).
583579
Obj : object
@@ -588,22 +584,6 @@ class Problem:
588584
Status of the problem after solving.
589585
IsMIP : bool
590586
Indicates if the problem is a Mixed Integer Program.
591-
rhs : array-like
592-
Right-hand side values for constraints.
593-
row_sense : array-like
594-
Senses for each constraint row.
595-
row_pointers : array-like
596-
Row pointers for constraint matrix.
597-
column_indicies : array-like
598-
Column indices for constraint matrix.
599-
values : array-like
600-
Values for constraint matrix.
601-
lower_bound : array-like
602-
Lower bounds for variables.
603-
upper_bound : array-like
604-
Upper bounds for variables.
605-
var_type : array-like
606-
Types of variables (continuous, integer, etc.).
607587
SolveTime : float
608588
Time taken to solve the problem.
609589
SolutionStats : dict

python/cuopt/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ requires-python = ">=3.10"
3333
dependencies = [
3434
"cudf==25.8.*,>=0.0.0a0",
3535
"cuopt-mps-parser==25.8.*,>=0.0.0a0",
36-
"cupy-cuda12x>=12.0.0",
36+
"cupy-cuda12x",
3737
"cuvs==25.8.*,>=0.0.0a0",
3838
"libcuopt==25.8.*,>=0.0.0a0",
3939
"numba-cuda>=0.14.0",
@@ -151,7 +151,6 @@ matrix-entry = "cuda_suffixed=true;use_cuda_wheels=true"
151151
requires = [
152152
"cmake>=3.30.4",
153153
"cuopt-mps-parser==25.8.*,>=0.0.0a0",
154-
"cupy-cuda12x>=12.0.0",
155154
"cython>=3.0.3",
156155
"libcuopt==25.8.*,>=0.0.0a0",
157156
"ninja",

python/cuopt_server/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ license = { text = "Apache-2.0" }
3333
requires-python = ">=3.10"
3434
dependencies = [
3535
"cuopt==25.8.*,>=0.0.0a0",
36-
"cupy-cuda12x>=12.0.0",
3736
"fastapi",
3837
"httpx",
3938
"jsonref==1.1.0",

0 commit comments

Comments
 (0)