libcuopt-cu12 25.5.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,134 @@
1
+ Metadata-Version: 2.1
2
+ Name: libcuopt-cu12
3
+ Version: 25.5.0
4
+ Summary: cuOpt - GPU Optimizer (C++)
5
+ Author: NVIDIA Corporation
6
+ License: Apache-2.0
7
+ Classifier: Intended Audience :: Developers
8
+ Classifier: Topic :: Database
9
+ Classifier: Topic :: Scientific/Engineering
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: C++
12
+ Classifier: Environment :: GPU :: NVIDIA CUDA
13
+ Project-URL: Homepage, https://docs.nvidia.com/cuopt/introduction.html
14
+ Project-URL: Source, https://github.com/nvidia/cuopt
15
+ Requires-Python: >=3.10
16
+ Requires-Dist: cuopt-mps-parser==25.5.*
17
+ Requires-Dist: librmm-cu12==25.4.*
18
+ Requires-Dist: nvidia-cublas-cu12
19
+ Requires-Dist: nvidia-curand-cu12
20
+ Requires-Dist: nvidia-cusolver-cu12
21
+ Requires-Dist: nvidia-cusparse-cu12
22
+ Requires-Dist: nvidia-nvtx-cu12
23
+ Requires-Dist: rapids-logger==0.1.*
24
+ Description-Content-Type: text/markdown
25
+
26
+ # cuOpt - GPU accelerated Optimization Engine
27
+
28
+ [![Build Status](https://github.com/NVIDIA/cuopt/actions/workflows/build.yaml/badge.svg)](https://github.com/NVIDIA/cuopt/actions/workflows/build.yaml)
29
+
30
+ NVIDIA® cuOpt™ is a GPU-accelerated optimization engine that excels in mixed integer linear programming (MILP), linear programming (LP), and vehicle routing problems (VRP). It enables near real-time solutions for large-scale challenges with millions of variables and constraints, offering
31
+ easy integration into existing solvers and seamless deployment across hybrid and multi-cloud environments.
32
+
33
+ Core engine is written in C++ which is wrapped into C API, Python API and Server API.
34
+
35
+ For the latest stable version ensure you are on the `main` branch.
36
+
37
+ ## Supported APIs
38
+
39
+ cuOpt supports the following APIs:
40
+
41
+ - C API support
42
+ - Linear Programming (LP)
43
+ - Mixed Integer Linear Programming (MILP)
44
+ - C++ API support
45
+ - cuOpt is written in C++ and includes a native C++ API. However, we do not provide documentation for the C++ API at this time. We anticipate that the C++ API will change significantly in the future. Use it at your own risk.
46
+ - Python support
47
+ - Routing (TSP, VRP, and PDP)
48
+ - Linear Programming (LP) and Mixed Integer Linear Programming (MILP)
49
+ - cuOpt includes a Python API that is used as the backend of the cuOpt server. However, we do not provide documentation for the Python API at this time. We suggest using cuOpt server to access cuOpt via Python. We anticipate that the Python API will change significantly in the future. Use it at your own risk.
50
+ - Server support
51
+ - Linear Programming (LP)
52
+ - Mixed Integer Linear Programming (MILP)
53
+ - Routing (TSP, VRP, and PDP)
54
+
55
+ ## Installation
56
+
57
+ ### CUDA/GPU requirements
58
+
59
+ * CUDA 12.0+
60
+ * NVIDIA driver >= 525.60.13 (Linux) and >= 527.41 (Windows)
61
+ * Volta architecture or better (Compute Capability >=7.0)
62
+
63
+ ### Python requirements
64
+
65
+ * Python >=3.10.x, <= 3.12.x
66
+
67
+ ### OS requirements
68
+
69
+ * Only Linux is supported and Windows via WSL2
70
+ * x86_64 (64-bit)
71
+ * aarch64 (64-bit)
72
+
73
+ Note: WSL2 is tested to run cuOpt, but not for building.
74
+
75
+ More details on system requirements can be found [here](https://docs.nvidia.com/cuopt/user-guide/latest/system-requirements.html)
76
+
77
+ ### Pip
78
+
79
+ Pip wheels are easy to install and easy to configure. Users with existing workflows who uses pip as base to build their workflows can use pip to install cuOpt.
80
+
81
+ cuOpt can be installed via `pip` from the NVIDIA Python Package Index.
82
+ Be sure to select the appropriate cuOpt package depending
83
+ on the major version of CUDA available in your environment:
84
+
85
+ For CUDA 12.x:
86
+
87
+ ```bash
88
+ pip install --extra-index-url=https://pypi.nvidia.com cuopt-server-cu12==25.5 cuopt-sh-client==25.5 nvidia-cuda-runtime-cu12==12.8.*
89
+ ```
90
+
91
+ ### Conda
92
+
93
+ cuOpt can be installed with conda (via [miniforge](https://github.com/conda-forge/miniforge)) from the `nvidia` channel:
94
+
95
+ All other dependencies are installed automatically when cuopt-server and cuopt-sh-client are installed.
96
+
97
+ Users who are used to conda env based workflows would benefit with conda packages readily available for cuOpt.
98
+
99
+ For CUDA 12.x:
100
+ ```bash
101
+ conda install -c rapidsai -c conda-forge -c nvidia \
102
+ cuopt-server=25.05 cuopt-sh-client=25.05 python=3.12 cuda-version=12.8
103
+ ```
104
+
105
+ We also provide [nightly Conda packages](https://anaconda.org/rapidsai-nightly) built from the HEAD
106
+ of our latest development branch.
107
+
108
+ ### Container
109
+
110
+ Users can pull the cuOpt container from the NVIDIA container registry.
111
+
112
+ ```bash
113
+ docker pull nvidia/cuopt:25.5.0-cuda12.8-py312
114
+ ```
115
+ More information about the cuOpt container can be found [here](https://docs.nvidia.com/cuopt/user-guide/latest/cuopt-server/quick-start.html#container-from-docker-hub).
116
+
117
+ Users who are using cuOpt for quick testing or research can use the cuOpt container. Alternatively, users who are planning to plug cuOpt as a service in their workflow can quickly start with the cuOpt container. But users are required to build security layers around the service to safeguard the service from untrusted users.
118
+
119
+ ## Build from Source and Test
120
+
121
+ Please see our [guide for building cuOpt from source](CONTRIBUTING.md#setting-up-your-build-environment). This will be helpful if users want to add new features or fix bugs for cuOpt. This would also be very helpful in case users want to customize cuOpt for their own use cases which require changes to the cuOpt source code.
122
+
123
+ ## Contributing Guide
124
+
125
+ Review the [CONTRIBUTING.md](CONTRIBUTING.md) file for information on how to contribute code and issues to the project.
126
+
127
+ ## Resources
128
+
129
+ - [libcuopt (C) documentation](https://docs.nvidia.com/cuopt/user-guide/latest/cuopt-c/index.html)
130
+ - [cuopt (Python) documentation](https://docs.nvidia.com/cuopt/user-guide/latest/cuopt-python/index.html)
131
+ - [cuopt (Server) documentation](https://docs.nvidia.com/cuopt/user-guide/latest/cuopt-server/index.html)
132
+ - [Examples and Notebooks](https://github.com/NVIDIA/cuopt-examples)
133
+ - [Test cuopt with NVIDIA Launchable](https://brev.nvidia.com/launchable/deploy?launchableID=env-2qIG6yjGKDtdMSjXHcuZX12mDNJ): Examples notebooks are pulled and hosted on [NVIDIA Launchable](https://docs.nvidia.com/brev/latest/).
134
+ - [Test cuopt on Google Colab](https://colab.research.google.com/github/nvidia/cuopt-examples/): Examples notebooks can be opened in Google Colab. Please note that you need to choose a `Runtime` as `GPU` in order to run the notebooks.
@@ -0,0 +1,10 @@
1
+ # SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2
3
+
4
+ [build-system]
5
+ requires = ["wheel-stub"]
6
+ build-backend = "wheel_stub.buildapi"
7
+
8
+ [tool.wheel_stub]
9
+ index_url = "https://pypi.nvidia.com/"
10
+ include_cuda_debuginfo = true