Singularity_python 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # Copyright (c) 2021 NVIDIA Corporation. All rights reserved.
  2. Bootstrap: docker
  3. #FROM: nvcr.io/nvidia/nvhpc:20.11-devel-cuda_multi-ubuntu20.04
  4. FROM: nvidia/cuda:11.2.2-devel-ubuntu20.04
  5. %environment
  6. export XDG_RUNTIME_DIR=
  7. export PATH="$PATH:/usr/local/bin:/opt/anaconda3/bin:/usr/bin"
  8. export PATH=/opt/nvidia/nsight-systems/2020.5.1/bin:/opt/nvidia/nsight-compute/2020.2.1:/bin:/usr/local/cuda/bin$PATH
  9. export LD_LIBRARY_PATH="/usr/local/lib:/usr/local/lib/python3.8/dist-packages:/usr/local/cuda/lib64${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}"
  10. %post
  11. build_tmp=$(mktemp -d) && cd ${build_tmp}
  12. apt-get -y update
  13. apt-get -y dist-upgrade
  14. DEBIAN_FRONTEND=noninteractive apt-get -yq install --no-install-recommends \
  15. m4 vim-nox emacs-nox nano zip\
  16. python3-pip python3-setuptools git-core inotify-tools \
  17. curl git-lfs \
  18. build-essential libtbb-dev
  19. rm -rf /var/lib/apt/cache/*
  20. pip3 install --no-cache-dir -U install setuptools pip
  21. pip3 install gdown
  22. pip3 install --no-cache-dir jupyter
  23. pip3 install --no-cache-dir "cupy-cuda112==8.6.0" \
  24. numba numpy scipy
  25. pip3 install --no-cache-dir MDAnalysis
  26. apt-get install --no-install-recommends -y build-essential
  27. python3 /labs/nways_MD/English/Python/source_code/dataset.py
  28. # NVIDIA nsight-systems-2020.5.1 ,nsight-compute-2
  29. apt-get update -y
  30. DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends apt-transport-https ca-certificates gnupg wget
  31. apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys F60F4B3D7FA2AF80
  32. echo "deb https://developer.download.nvidia.com/devtools/repos/ubuntu2004/amd64/ /" >> /etc/apt/sources.list.d/nsight.list
  33. apt-get update -y
  34. DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends nsight-systems-2020.5.1 nsight-compute-2020.2.1
  35. apt-get install --no-install-recommends -y build-essential
  36. wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
  37. bash Miniconda3-latest-Linux-x86_64.sh -b -p /opt/anaconda3
  38. rm Miniconda3-latest-Linux-x86_64.sh
  39. cd /
  40. rm -rf ${build_tmp}
  41. %files
  42. nways_labs/ /labs
  43. %runscript
  44. "$@"
  45. %labels
  46. AUTHOR Tosin