-
Notifications
You must be signed in to change notification settings - Fork 110
Closed
Labels
kind/answered questionquestions that has been answered, for referencequestions that has been answered, for reference
Description
I am following semantic-segmentation README, when I running ianvs -f examples/robot/lifelong_learning_bench/semantic-segmentation/benchmarkingjob-simple.yaml, it shows:
Traceback (most recent call last):
File "/home/icyfeather/miniconda3/envs/ianvs/bin/ianvs", line 33, in <module>
sys.exit(load_entry_point('ianvs==0.1.0', 'console_scripts', 'ianvs')())
File "/home/icyfeather/project/ianvs/core/cmd/benchmarking.py", line 41, in main
raise RuntimeError(f"benchmarkingjob runs failed, error: {err}.") from err
RuntimeError: benchmarkingjob runs failed, error: testcase(id=6632e63a-19f0-11ef-8dca-8576dbea9f3c) runs failed, error: (paradigm=lifelonglearning) pipeline runs failed, error: module(type=basemodel loads class(name=BaseModel) failed, error: load module(url=./examples/robot/lifelong_learning_bench/semantic-segmentation/testalgorithms/rfnet/basemodel-simple.py) failed, error: libcudart.so.11.0: cannot open shared object file: No such file or directory..
After searching on the Internet, I know it's probably about version conficts. But I hope there is a detailed version requirements(such as cuda version, torch version, etc.) to help me solve this.
And here is my env info:
(ianvs) icyfeather@gpu3:~/project/ianvs$ pip list
Package Version Editable project location
------------------------ ----------- -----------------------------------------
absl-py 2.1.0
addict 2.4.0
asgiref 3.8.1
astor 0.8.1
cachetools 4.2.4
certifi 2024.2.2
charset-normalizer 3.3.2
click 8.1.7
colorlog 4.7.2
contourpy 1.2.1
cycler 0.12.1
fastapi 0.68.2
filelock 3.14.0
fonttools 4.51.0
fsspec 2024.5.0
gast 0.5.4
google-auth 1.35.0
google-auth-oauthlib 0.4.6
google-pasta 0.2.0
grpcio 1.64.0
h11 0.14.0
h5py 3.11.0
ianvs 0.1.0
idna 3.7
importlib_metadata 7.1.0
importlib_resources 6.4.0
install 1.3.5
Jinja2 3.1.4
joblib 1.2.0
Keras-Applications 1.0.8
Keras-Preprocessing 1.1.2
kiwisolver 1.4.5
Markdown 3.6
markdown-it-py 3.0.0
MarkupSafe 2.1.5
matplotlib 3.9.0
mdurl 0.1.2
minio 7.0.4
mmcv 2.0.0
mmdet 3.1.0 /home/icyfeather/project/mmdetection
mmengine 0.10.4
mpmath 1.3.0
mypath 0.1
networkx 3.2.1
numpy 1.23.4
nvidia-cublas-cu12 12.1.3.1
nvidia-cuda-cupti-cu12 12.1.105
nvidia-cuda-nvrtc-cu12 12.1.105
nvidia-cuda-runtime-cu12 12.1.105
nvidia-cudnn-cu12 8.9.2.26
nvidia-cufft-cu12 11.0.2.54
nvidia-curand-cu12 10.3.2.106
nvidia-cusolver-cu12 11.4.5.107
nvidia-cusparse-cu12 12.1.0.106
nvidia-nccl-cu12 2.20.5
nvidia-nvjitlink-cu12 12.5.40
nvidia-nvtx-cu12 12.1.105
oauthlib 3.2.2
opencv-python 4.9.0.80
packaging 24.0
pandas 2.2.2
pillow 10.3.0
pip 24.0
platformdirs 4.2.2
prettytable 2.5.0
protobuf 3.20.3
pyasn1 0.6.0
pyasn1_modules 0.4.0
pycocotools 2.0.7
pydantic 1.10.15
Pygments 2.18.0
pyparsing 3.1.2
python-dateutil 2.9.0.post0
pytz 2024.1
PyYAML 6.0.1
requests 2.32.2
requests-oauthlib 2.0.0
rich 13.7.1
rsa 4.9
scikit-learn 1.5.0
scipy 1.13.1
sedna 0.4.1
segment-anything 1.0 /home/icyfeather/project/segment-anything
setuptools 54.2.0
shapely 2.0.4
six 1.15.0
starlette 0.14.2
sympy 1.12
tenacity 8.0.1
tensorboard 2.3.0
tensorboard-plugin-wit 1.8.1
tensorflow-estimator 1.14.0
termcolor 2.4.0
terminaltables 3.1.10
threadpoolctl 3.5.0
tomli 2.0.1
torch 2.3.0
torchaudio 2.3.0
torchvision 0.18.0
tqdm 4.66.4
triton 2.3.0
typing_extensions 4.11.0
tzdata 2024.1
urllib3 2.2.1
uvicorn 0.14.0
wcwidth 0.2.13
websockets 9.1
Werkzeug 3.0.3
wheel 0.43.0
wrapt 1.16.0
yapf 0.40.2
zipp 3.18.2
(ianvs) icyfeather@gpu3:~/project/ianvs$ nvidia-smi
Sat May 25 01:11:54 2024
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 555.42.02 Driver Version: 555.42.02 CUDA Version: 12.5 |
|-----------------------------------------+------------------------+----------------------+
| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|=========================================+========================+======================|
| 0 NVIDIA GeForce RTX 2080 Ti Off | 00000000:02:00.0 Off | N/A |
| 0% 42C P8 1W / 260W | 16MiB / 11264MiB | 0% Default |
| | | N/A |
+-----------------------------------------+------------------------+----------------------+
+-----------------------------------------------------------------------------------------+
| Processes: |
| GPU GI CI PID Type Process name GPU Memory |
| ID ID Usage |
|=========================================================================================|
| 0 N/A N/A 1082 G /usr/lib/xorg/Xorg 9MiB |
| 0 N/A N/A 1397 G /usr/bin/gnome-shell 3MiB |
+-----------------------------------------------------------------------------------------+
Should I downgrade my cuda version?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
kind/answered questionquestions that has been answered, for referencequestions that has been answered, for reference