How to run OpenCL + OpenGL inside a Docker container?

一笑奈何 提交于 2020-06-24 16:50:08

问题


The aim is to run an OpenCL/OpenGL (interop) app inside a docker container. But I have not been successful yet.

Intro

I have laptop with an NVidia graphics card so I thought leveraging on NVidia Dockerfiles [1,2] would be a good starting point.

The following Dockerfile:

# Dockerfile to run OpenGL app
FROM nvidia/opengl:1.0-glvnd-runtime-ubuntu16.04
ENV NVIDIA_DRIVER_CAPABILITIES ${NVIDIA_DRIVER_CAPABILITIES},display
RUN apt-get update && apt-get install -y --no-install-recommends \
        mesa-utils && \
    rm -rf /var/lib/apt/lists/*

works quite well, and I was able to run glxgears.

Running OpenCL on its own container was no big deal either:

# Dockerfile to run OpenCL app
FROM nvidia/opengl:1.0-glvnd-runtime-ubuntu16.04
RUN apt-get update && apt-get install -y --no-install-recommends \
        ocl-icd-libopencl1 \
        clinfo && \
    rm -rf /var/lib/apt/lists/*
RUN mkdir -p /etc/OpenCL/vendors && \
    echo "libnvidia-opencl.so.1" > /etc/OpenCL/vendors/nvidia.icd
ENV NVIDIA_VISIBLE_DEVICES all
ENV NVIDIA_DRIVER_CAPABILITIES compute,utility

and clinfo successfully shows information about my device.


Attempt

Finally here's my attempt at creating a container with both OpenGL and OpenCL drivers:

# Dockerfile mixing OpenGL and OpenCL
FROM nvidia/opengl:1.0-glvnd-runtime-ubuntu16.04
ENV NVIDIA_DRIVER_CAPABILITIES ${NVIDIA_DRIVER_CAPABILITIES},display
RUN apt-get update && apt-get install -y --no-install-recommends \
        mesa-utils \
        ocl-icd-libopencl1 \
        clinfo && \
    rm -rf /var/lib/apt/lists/*
RUN mkdir -p /etc/OpenCL/vendors && \
    echo "libnvidia-opencl.so.1" > /etc/OpenCL/vendors/nvidia.icd
ENV NVIDIA_VISIBLE_DEVICES all
ENV NVIDIA_DRIVER_CAPABILITIES compute,utility

And now, although clinfo still prints OpenCL device information, glxgears on the other hand fails with the following error:

Error: couldn't get an RGB, Double-buffered visual 

Any idea how to make this work? Thanks in advance.


References

  • [1] https://gitlab.com/nvidia/opencl/blob/ubuntu16.04/devel/Dockerfile
  • [2] https://gitlab.com/nvidia/opencl/blob/ubuntu16.04/runtime/Dockerfile

回答1:


ENV NVIDIA_DRIVER_CAPABILITIES compute,utility

You forgot the capability display.



来源:https://stackoverflow.com/questions/54243119/how-to-run-opencl-opengl-inside-a-docker-container

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!