[DEPRECATED] Emloop tensorflow image.
8.2K
This is a repository contaning the open-source docker images provided by Iterait a.s.
We use nvidia-docker instead of regular docker in order to enhance GPU support. However, regular docker might be used as well.
All built images are stored in Iterait DockerHub.
| CPU-only image | GPU enabled image | Description |
|---|---|---|
iterait/archlinux:latest | iterait/archlinux:cuda | Base ArchLinux setup with trizen and other frequently required packages. |
iterait/emloop:latest | iterait/emloop:cuda | emloop environment with standard plugins. |
iterait/emloop-tensorflow:latest | iterait/emloop-tensorflow:cuda | TensorFlow backend for emloop. |
iterait/emloop-tensorflow-hipipe:latest | iterait/emloop-tensorflow-hipipe:cuda | emloop + emloop-tensorflow + hipipe. |
All images may be built by regular docker build process.
$ docker build -t <image-name> -f <dockerfile> .
If you require NVIDIA CUDA support, build the image with tag=cuda build argument.
$ docker build --build-arg tag=cuda -t <image-name>:cuda -f <dockerfile> .
Running the container without GPU support is straightforward.
$ docker run -it <image-name> /bin/bash
To run the container with GPU support, we recommend using nvidia-docker.
The following example demonstrates the employment of two GPUs and executing bash.
$ docker run --runtime=nvidia \
-e NVIDIA_VISIBLE_DEVICES=0,1 \
-it <image-name>:cuda /bin/bash
Content type
Image
Digest
Size
811.1 MB
Last updated
over 7 years ago
docker pull iterait/emloop-tensorflow