Skip to content

Instantly share code, notes, and snippets.

@ianfiske
Created May 10, 2016 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ianfiske/6f56c1f95b5a65eccce4f6b5f5eef052 to your computer and use it in GitHub Desktop.
Save ianfiske/6f56c1f95b5a65eccce4f6b5f5eef052 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# Copyright 2015 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
set -e
export CUDA_HOME=${CUDA_HOME:-/usr/local/cuda}
if [ ! -d ${CUDA_HOME}/lib64 ]; then
echo "Failed to locate CUDA libs at ${CUDA_HOME}/lib64."
exit 1
fi
export CUDA_SO=$(\ls /usr/lib/x86_64-linux-gnu/libcuda.* | \
xargs -I{} echo '-v {}:{}')
export DEVICES=$(\ls /dev/nvidia* | \
xargs -I{} echo '--device {}:{}')
if [[ "${DEVICES}" = "" ]]; then
echo "Failed to locate NVidia device(s). Did you want the non-GPU container?"
exit 1
fi
docker run -e LD_LIBRARY_PATH=$LD_LIBRARY_PATH --device /dev/mem:/dev/mem -v /lib/modules:/lib/modules --cap-add=ALL --privileged -v /usr/local/cuda:/usr/local/cuda -it $CUDA_SO $DEVICES "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment