Repository containing scaffolding for a Python 3-based data science project with GPU acceleration using on the TensorFlow ecosystem.
Simply follow the instructions to create a new project repository from this template.
Project organization is based on ideas from Good Enough Practices for Scientific Computing.
- Put each project in its own directory, which is named after the project.
- Put external scripts or compiled programs in the
bindirectory. - Put raw data and metadata in a
datadirectory. - Put text documents associated with the project in the
docdirectory. - Put all Docker related files in the
dockerdirectory. - Install the Conda environment into an
envdirectory. - Put all notebooks in the
notebooksdirectory. - Put files generated during cleanup and analysis in a
resultsdirectory. - Put project source code in the
srcdirectory. - Name all files to reflect their content or function.
You will need to have the appropriate version of the NVIDIA CUDA Toolkit installed on your workstation. For TensorFlow 1.X or TensorFlow 2.0 the required version is NVIDIA CUDA Toolkit 10.0 (documentation); for TensorFlow 2.1 you can install NVIDIA CUDA Toolkit 10.1 (documentation).
After installing the appropriate version of the NVIDIA CUDA Toolkit you will need to set the following environment variables.
$ export CUDA_HOME=/usr/local/cuda-10.0 # /usr/local/cuda-10.1 if using TensorFlow 2.1
$ export PATH=$CUDA_HOME/bin:$PATH
$ export LD_LIBRARY_PATH=$CUDA_HOME/lib64:$LD_LIBRARY_PATHIbex users do not neet to install NVIDIA CUDA Toolkit as the relevant versions have already been
made available on Ibex by the Ibex Systems team. Users simply need to load the appropriate version
using the module tool.
$ module load cuda/10.0.130 # cuda/10.1.243 if using TensorFlow 2.1After adding any necessary dependencies that should be downloaded via conda to the
environment.yml file and any dependencies that should be downloaded via pip to the
requirements.txt file you create the Conda environment in a sub-directory ./envof your project
directory by running the following commands.
export ENV_PREFIX=$PWD/env
export HOROVOD_CUDA_HOME=$CUDA_HOME
export HOROVOD_NCCL_HOME=$ENV_PREFIX
export HOROVOD_GPU_ALLREDUCE=NCCL
export HOROVOD_GPU_BROADCAST=NCCL
conda env create --prefix $ENV_PREFIX --file environment.yml --forceOnce the new environment has been created you can activate the environment with the following command.
conda activate $ENV_PREFIXNote that the ENV_PREFIX directory is not under version control as it can always be re-created as
necessary.
If you wish to use any JupyterLab extensions included in the environment.yml and requirements.txt
files then you need to activate the environment and rebuild the JupyterLab application using the
following commands to source the postBuild script.
conda activate $ENV_PREFIX # optional if environment already active
. postBuildFor your convenience these commands have been combined in a shell script ./bin/create-conda-env.sh.
Running the shell script will set the Horovod build variables correctly, create the Conda environment,
activate the Conda environment, and built JupyterLab with any additional extensions. The script should
be run from the project root directory as follows.
follows.
./bin/create-conda-env.sh # assumes that $CUDA_HOME is set properlyAfter building the Conda environment you can check that Horovod has been built with support for TensorFlow and MPI with the following command.
conda activate $ENV_PREFIX # optional if environment already active
horovodrun --check-buildYou should see output similar to the following.
Horovod v0.19.0:
Available Frameworks:
[X] TensorFlow
[ ] PyTorch
[ ] MXNet
Available Controllers:
[X] MPI
[X] Gloo
Available Tensor Operations:
[X] NCCL
[ ] DDL
[ ] MLSL
[X] MPI
[X] Gloo
The list of explicit dependencies for the project are listed in the environment.yml file. To see
the full lost of packages installed into the environment run the following command.
conda list --prefix $ENV_PREFIXIf you add (remove) dependencies to (from) the environment.yml file or the requirements.txt file
after the environment has already been created, then you can re-create the environment by running the
bash script ./bin/create-conda-env.sh again.
./bin/create-conda-env.shIn order to build Docker images for your project and run containers with GPU acceleration you will need to install Docker, Docker Compose and the NVIDIA Docker runtime.
Detailed instructions for using Docker to build and image and launch containers can be found in
the docker/README.md.