This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
cluster:187 [2019/12/10 19:01] hmeij07 |
cluster:187 [2020/08/17 12:01] (current) hmeij07 |
||
---|---|---|---|
Line 1: | Line 1: | ||
\\ | \\ | ||
**[[cluster: | **[[cluster: | ||
+ | |||
+ | Slurm links: | ||
+ | |||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | |||
+ | Other useful links. | ||
+ | |||
+ | * https:// | ||
+ | * https:// | ||
+ | * scheduler wrapper, inside container: NV_GPU=2,3 nvidia-docker run ... | ||
+ | * (container sees host gpu 2,3 as container gpu 0,1) | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * | ||
==== NGC Docker Containers ==== | ==== NGC Docker Containers ==== | ||
- | Trying to understand how to leverage GPU ready applications on the Nvidia NGC web site (Nvidia GPU Cloud). Download docker containers and buidl your own on premise catalog. Can't wrap myself around the problem of how to integrate containers with the Openlava | + | Trying to understand how to leverage GPU ready applications on the Nvidia NGC web site (Nvidia GPU Cloud). Download docker containers and build your own on premise catalog. Run GPU ready software on compute nodes with docker containers. Can't wrap myself around the problem of how to integrate containers with the our scheduler |
* https:// | * https:// | ||
Line 11: | Line 29: | ||
< | < | ||
- | # Assumes CentOS | + | # get docker on centos |
- | # Assumes NVIDIA Driver is installed as per requirements ( < 340.29 ) | + | curl -fsSL https:// |
- | # Install DOCKER | + | ./ |
- | sudo curl -fsSL https:// | + | |
- | # Start DOCKER | + | # systemctl |
- | sudo systemctl start docker | + | systemctl enable docker |
- | # Add dockeruser, usermod change | + | systemctl start docker |
- | sudo adduser dockeruser | + | |
+ | # dockeruser, usermod change | ||
+ | adduser dockeruser | ||
usermod -aG docker dockeruser | usermod -aG docker dockeruser | ||
- | # Install NV-DOCKER | + | |
- | # GET NVIDIA-DOCKER | + | # get nvidia-docker |
- | wget -P /tmp https:// | + | # wget -P /tmp https:// |
- | # INSTALL | + | wget https:// |
- | sudo rpm -i / | + | |
- | # Start NV-DOCKER Service | + | # rpm -i / |
+ | # make nvidia-docker | ||
+ | |||
+ | # systemctl | ||
+ | systemctl enable nvidia-docker | ||
systemctl start nvidia-docker | systemctl start nvidia-docker | ||
Line 103: | Line 127: | ||
# mount host directory to container location | # mount host directory to container location | ||
- | -v /home/hmeij:/user/local/hmeij | + | -v $HOME:/tmp/$USER |
# pull images | # pull images | ||
Line 124: | Line 148: | ||
# custom build images ... | # custom build images ... | ||
# looks complex based on Dockerfile config file commands | # looks complex based on Dockerfile config file commands | ||
- | # see link | + | # see link |
</ | </ | ||