I have an application running inside a docker container that access the GPU for computation.
I have been tasked to research how to run two instances of this container. They have to share the one GPU of the machine, and there should not be room for mistaking data from one container to the other.
How can I do this GPU sharing from containers?
Important Note: I have googled it and the results I found involve using Kubernetes or VGPU. My question is about methods that do not include either of them