Skip to content

Commit bdcf4d0

Browse files
authored
Change error message
The error message refers to `cupy-cuda111` and create confusion in users. Better to use the generic `cupy` package in this message.
1 parent a5a1f4f commit bdcf4d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel_tuner/cupy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def __init__(self, device=0, iterations=7, compiler_options=None, observers=None
5555
self.texrefs = []
5656
if not cp:
5757
raise ImportError("Error: cupy not installed, please install e.g. " +
58-
"using 'pip install cupy-cuda111', please check https://github.com/cupy/cupy.")
58+
"using 'pip install cupy', please check https://github.com/cupy/cupy.")
5959

6060
#select device
6161
self.dev = dev = cp.cuda.Device(device)

0 commit comments

Comments
 (0)