raise ValueError("Cannot use GPU, CuPy is not installed") ValueError: Cannot use GPU, CuPy is not installed I added this small snippet of debug code right before the train, which confirmed that CuPy really is there, but somehow it doesn't get found..?? env=dict(tuple(str(ws).split()...
cuda-python 12.1.0rc5+1.gc7fd38c.dirty cupy-cuda12x 12.0.0b3 dask-cuda 23.2.0 nvidia-cuda-cupti-cu11 11.7.101 nvidia-cuda-nvrtc-cu11 11.7.99 nvidia-cuda-runtime-cu11 11.7.99 nvidia-dali-cuda110 1.23.0 Meaning vLLM can work on CUDA 12 drivers, and we don't need to reinstall CU...
Trying to import LocalCUDACluster and I get the error below. I've noticed this error a few times with different versions of CUDA, python etc., where it appears to install correctly but fails when trying to import. Unfortunately I had to ...
"cupy-cuda11x==11.0.0", "cvxopt==1.3.2", "cvxpy==1.3.2", "cycler==0.11.0", "cymem==2.0.7", "cython==0.29.36", "dask==2023.8.1", "datascience==0.17.6", "db-dtypes==1.1.1", "dbus-python==1.2.18", "debugpy==1.6.6", "decorator==4.4.2", "defusedxml==0.7.1", "...
import numpy as np import cupy as cp arr = [1, 2, 3] np_dict = dict() cp_dict = dict() np_arr = np.asarray(arr) cp_arr = cp.asarray(arr) for i in np_arr: np_dict[i] = "okay" print(np_dict) # {1: 'okay', 2: 'okay', 3: 'okay'} for i in cp_arr: cp_...
Compile cub/thrust with no unique symbol cupy/cupy#6106 Merged jakkes commented Nov 26, 2021 I am getting this error using libtorch 1.10. How is it "mostly" solved, what can I do to work around the issue? I am not very keen on building from source.. 👍 1 twmht commented Nov...