11 KiB
Build MMCV from source
Build mmcv-full
Before installing mmcv-full, make sure that PyTorch has been successfully installed following the PyTorch official installation guide. This can be verified using the following command
python -c 'import torch;print(torch.__version__)'
If version information is output, then PyTorch is installed.
- To compile ONNX Runtime custom operators, please refer to [How to build custom operators for ONNX Runtime](https://mmcv.readthedocs.io/en/latest/deployment/onnxruntime_op.html#how-to-build-custom-operators-for-onnx-runtime)
- To compile TensorRT customization, please refer to [How to build TensorRT plugins in MMCV](https://mmcv.readthedocs.io/en/latest/deployment/tensorrt_plugin.html#how-to-build-tensorrt-plugins-in-mmcv)
If you would like to use `opencv-python-headless` instead of `opencv-python`,
e.g., in a minimum container environment or servers without GUI,
you can first install it before installing MMCV to skip the installation of `opencv-python`.
Build on Linux
-
Clone the repo
git clone https://github.com/open-mmlab/mmcv.git cd mmcv
-
Install
ninja
andpsutil
to speed up the compilationpip install -r requirements/optional.txt
-
Check the nvcc version (requires 9.2+. Skip if no GPU available.)
nvcc --version
If the above command outputs the following message, it means that the nvcc setting is OK, otherwise you need to set CUDA_HOME.
nvcc: NVIDIA (R) Cuda compiler driver Copyright (c) 2005-2020 NVIDIA Corporation Built on Mon_Nov_30_19:08:53_PST_2020 Cuda compilation tools, release 11.2, V11.2.67 Build cuda_11.2.r11.2/compiler.29373293_0
:::{note} If you want to support ROCm, you can refer to AMD ROCm to install ROCm. :::
-
Check the gcc version (requires 5.4+)
gcc --version
-
Start building (takes 10+ min)
MMCV_WITH_OPS=1 pip install -e . -v
-
Validate the installation
python .dev_scripts/check_installation.py
If no error is reported by the above command, the installation is successful. If there is an error reported, please check Frequently Asked Questions to see if there is already a solution.
If no solution is found, please feel free to open an issue.
Build on macOS
If you are using a mac with an M1 chip, install the nightly version of PyTorch, otherwise you will encounter the problem in [issues#2218](https://github.com/open-mmlab/mmcv/issues/2218).
-
Clone the repo
git clone https://github.com/open-mmlab/mmcv.git cd mmcv
-
Install
ninja
andpsutil
to speed up the compilationpip install -r requirements/optional.txt
-
Start building
MMCV_WITH_OPS=1 pip install -e .
-
Validate the installation
python .dev_scripts/check_installation.py
If no error is reported by the above command, the installation is successful. If there is an error reported, please check Frequently Asked Questions to see if there is already a solution.
If no solution is found, please feel free to open an issue.
Build on Windows
Building MMCV on Windows is a bit more complicated than that on Linux. The following instructions show how to get this accomplished.
Prerequisite
The following software is required for building MMCV on windows. Install them first.
- Git
- During installation, tick add git to Path.
- Visual Studio Community 2019
- A compiler for C++ and CUDA codes.
- Miniconda
- Official distributions of Python should work too.
- CUDA 10.2
- Not required for building CPU version.
- Customize the installation if necessary. As a recommendation, skip the driver installation if a newer version is already installed.
You should know how to set up environment variables, especially `Path`, on Windows. The following instruction relies heavily on this skill.
Common steps
-
Launch Anaconda prompt from Windows Start menu
Do not use raw
cmd.exe
s instruction is based on PowerShell syntax. -
Create a new conda environment
(base) PS C:\Users\xxx> conda create --name mmcv python=3.7 (base) PS C:\Users\xxx> conda activate mmcv # make sure to activate environment before any operation
-
Install PyTorch. Choose a version based on your need.
# CUDA version (mmcv) PS C:\Users\xxx> conda install pytorch torchvision cudatoolkit=10.2 -c pytorch # CPU version (mmcv) PS C:\Users\xxx> conda install install pytorch torchvision cpuonly -c pytorch
-
Clone the repo
(mmcv) PS C:\Users\xxx> git clone https://github.com/open-mmlab/mmcv.git (mmcv) PS C:\Users\xxx\mmcv> cd mmcv
-
Install
ninja
andpsutil
to speed up the compilation(mmcv) PS C:\Users\xxx\mmcv> pip install -r requirements/optional.txt
-
Install required Python packages
(mmcv) PS C:\Users\xxx\mmcv> pip install -r requirements/runtime.txt
-
Set up MSVC compiler
Set Environment variable, add
C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.27.29110\bin\Hostx86\x64
toPATH
, so thatcl.exe
will be available in prompt, as shown below.(mmcv) PS C:\Users\xxx\mmcv> cl Microsoft (R) C/C++ Optimizing Compiler Version 19.27.29111 for x64 Copyright (C) Microsoft Corporation. All rights reserved. usage: cl [ option... ] filename... [ / link linkoption... ]
For compatibility, we use the x86-hosted and x64-targeted compiler. note
Hostx86\x64
in the path.You may want to change the system language to English because pytorch will parse text output from
cl.exe
to check its version. However only utf-8 is recognized. Navigate to Control Panel -> Region -> Administrative -> Language for Non-Unicode programs and change it to English.
Build and install MMCV
mmcv-full can be built in two ways:
-
Full version (CPU ops)
Module
ops
will be compiled as a pytorch extension, but only x86 code will be compiled. The compiled ops can be executed on CPU only. -
Full version (CUDA ops)
Both x86 and CUDA codes of
ops
module will be compiled. The compiled version can be run on both CPU and CUDA-enabled GPU (if implemented).
CPU version
-
Set up environment variables
(mmcv) PS C:\Users\xxx\mmcv> $env:MMCV_WITH_OPS = 1
-
Build and install
(mmcv) PS C:\Users\xxx\mmcv> python setup.py build_ext (mmcv) PS C:\Users\xxx\mmcv> python setup.py develop
GPU version
-
Make sure
CUDA_PATH
orCUDA_HOME
is already set inenvs
vials env:
, desired output is shown as below:(mmcv) PS C:\Users\xxx\mmcv> ls env: Name Value ---- ----- CUDA_PATH C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.2 CUDA_PATH_V10_1 C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.1 CUDA_PATH_V10_2 C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.2
This should already be done by CUDA installer. If not, or you have multiple version of CUDA toolkit installed, set it with
(mmcv) PS C:\Users\xxx\mmcv> $env:CUDA_HOME = "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.2" # OR (mmcv) PS C:\Users\xxx\mmcv> $env:CUDA_HOME = $env:CUDA_PATH_V10_2 # if CUDA_PATH_V10_2 is in envs:
-
Set CUDA target arch
# Here you need to change to the target architecture corresponding to your GPU (mmcv) PS C:\Users\xxx\mmcv> $env:TORCH_CUDA_ARCH_LIST="7.5"
:::{note} Check your the compute capability of your GPU from here.
(mmcv) PS C:\Users\xxx\mmcv> &"C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.2\extras\demo_suite\deviceQuery.exe" Device 0: "NVIDIA GeForce GTX 1660 SUPER" CUDA Driver Version / Runtime Version 11.7 / 11.1 CUDA Capability Major/Minor version number: 7.5
The 7.5 above indicates the target architecture. Note: You need to replace v10.2 with your CUDA version in the above command. :::
-
Build and install
# build python setup.py build_ext # if success, cl will be launched to compile ops # install python setup.py develop
If you are compiling against PyTorch 1.6.0, you might meet some errors from PyTorch as described in [this issue](https://github.com/pytorch/pytorch/issues/42467). Follow [this pull request](https://github.com/pytorch/pytorch/pull/43380/files) to modify the source code in your local PyTorch installation.
Validate installation
(mmcv) PS C:\Users\xxx\mmcv> python .dev_scripts/check_installation.py
If no error is reported by the above command, the installation is successful. If there is an error reported, please check Frequently Asked Questions to see if there is already a solution. If no solution is found, please feel free to open an issue.
Build mmcv
If you need to use PyTorch-related modules, make sure PyTorch has been successfully installed in your environment by referring to the PyTorch official installation guide.
-
Clone the repo
git clone https://github.com/open-mmlab/mmcv.git cd mmcv
-
Start building
pip install -e . -v
-
Validate installation
python -c 'import mmcv;print(mmcv.__version__)'
Build mmcv-full on IPU machine
Firstly, you need to apply for an IPU cloud machine, see here.
Option 1: Docker
-
Pull docker
docker pull graphcore/pytorch
-
Build MMCV under same python environment
Option 2: Install from SDK
-
Build MMCV
-
Use pip to install sdk according to IPU PyTorch document. Also, you need to apply for machine and sdk to Graphcore.