Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/proafxin/cuda-docker
High performance computing Images with pycuda and tensorrt preinstalled
https://github.com/proafxin/cuda-docker
cuda docker dockerfile libcudnn nvidia-tensorrt pycuda python tensorrt
Last synced: about 2 months ago
JSON representation
High performance computing Images with pycuda and tensorrt preinstalled
- Host: GitHub
- URL: https://github.com/proafxin/cuda-docker
- Owner: proafxin
- License: gpl-3.0
- Created: 2023-12-21T02:33:30.000Z (about 1 year ago)
- Default Branch: develop
- Last Pushed: 2023-12-22T17:24:09.000Z (about 1 year ago)
- Last Synced: 2024-01-28T23:41:05.641Z (12 months ago)
- Topics: cuda, docker, dockerfile, libcudnn, nvidia-tensorrt, pycuda, python, tensorrt
- Language: Dockerfile
- Homepage: https://hub.docker.com/repository/docker/billalmasum93/hpc/general
- Size: 42.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This repository contains some docker containers of Ubuntu 22.04 version with cuda 11.8, libcudnn8, pycuda and nvidia-tensorrt preinstalled. The images are extended from official nvidia cuda containers. pycuda is notoriously difficult to install even in the latest python versions. Also nvidia-tensorrt can be a bit tricky to install. These containers aim to solve this issue for the most popular python versions including an old version 3.7 since many applications still run on 3.7.
#How to run
Simply execute `./run_docker.sh` If it is not recognized as an executable: `sudo chmod +x run_docker.sh`
Note: initially, numpy was also part of the container. However, usually applications have numpy installed already which may conflict with existing versions. So numpy was removed. This may be important when you try to use something like import pycuda.driver as cuda which will result in the error that numpy is not installed. If that is the case, simply add numpy to your project: `python3 -m pip install -U numpy`