Skip to content

Commit

Permalink
FIX cupy import (#5613)
Browse files Browse the repository at this point in the history
PR fixes an accidental unsafe cupy import from a recent PR. Tests to detect these will be added in 23.12.

Authors:
   - Dante Gama Dessavre (https://github.com/dantegd)

Approvers:
   - William Hicks (https://github.com/wphicks)
   - Ray Douglass (https://github.com/raydouglass)
  • Loading branch information
dantegd authored Oct 9, 2023
1 parent e5d6bc2 commit 6bd3842
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
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

0 comments on commit 6bd3842

Please sign in to comment.