Skip to content
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

Fix accidental unsafe cupy import #5613

Merged
merged 1 commit into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 2 additions & 2 deletions docs/source/execution_device_interoperability.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
"For GPU systems, cuML still follows the [RAPIDS requirements] and nothing has changed for installing it. The cuML package and wheels are universal and can run in both GPU and CPU modes. For installing in CPU systems, similar to other packages it can be installed from conda/mamba with:\n",
"\n",
"```bash\n",
"mamba install -c rapidsai cuml-cpu=23.10 \n",
"# mamba install -c rapidsai-nightly cuml-cpu=23.12 # for nightly builds\n",
"mamba install -c rapidsai -c nvidia -c conda-forge cuml-cpu=23.10 \n",
"# mamba install -c rapidsai-nightly -c nvidia -c conda-forge cuml-cpu=23.12 # for nightly builds\n",
"```\n",
"\n",
"- cuML 23.10 supports Linux and WSL2 on GPU and CPU systems using conda. \n",
Expand Down
2 changes: 0 additions & 2 deletions python/cuml/internals/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
# limitations under the License.
#

import cupy as cp

import copy
import operator
import pickle
Expand Down