English | 中文
MegEngine is a fast, scalable and easy-to-use deep learning framework, with auto-differentiation.
NOTE: MegEngine now only supports Linux platform with Python 3.5 or higher. On Windows 10 you could try WSL(Windows Subsystem for Linux) to use Linux within Windows.
Commands to install from binaries via pip wheels are as follows:
pip3 install megengine -f https://megengine.org.cn/whl/mge.htmlMost of the dependencies of MegEngine are located in third_party directory, and you do
not need to install these by yourself. you can prepare these repositories by executing:
./third_party/prepare.sh
./third_party/install-mkl.shBut some dependencies should be manually installed:
- CUDA(>=10.1), cuDNN(>=7.6)are required when building MegEngine with CUDA support (default ON)
- TensorRT(>=5.1.5) is required when building with TensorRT support (default ON)
- LLVM/Clang(>=6.0) is required when building with Halide JIT support (default ON)
- Python(>=3.5), Numpy, SWIG(>=3.0) are required to build Python modules. (default ON)
MegEngine prefers Out-Of-Source flavor, and compile in a mostly-static way.
Here are the instructions:
-
Make a directory for the build.
mkdir -p build cd build -
Generate build configurations by
CMake.For CUDA build:
cmake .. -DMGE_WITH_TEST=ON
For CPU only build, use
-DMGE_WITH_CUDA=OFF:cmake .. -DMGE_WITH_CUDA=OFF -DMGE_WITH_TEST=ON
For deployment with C++ only, use
-DMGE_INFERENCE_ONLY=ON, and turn off test with-DMGE_WITH_TEST=OFF:cmake .. -DMGE_INFERENCE_ONLY=ON -DMGE_WITH_TEST=OFF
Use
-DCMAKE_INSTALL_PREFIX=YOUR_PATHto specify the install path. -
Start to build.
make -j$(nproc) -
[optional] Install the library if compiled for deployment at step 2.
make install
Here are some other useful options for the build.
MGE_ARCHspecifies which arch MegEngine are building for. (default AUTO)MGE_WITH_DISTRIBUTEDif multiple machine distributed support is enabled. (default ON)MGE_WITH_PYTHON_MODULEif build python module. (default ON)MGE_BLASchoosesMKLorOpenBLASas BLAS library for MegEngine. (defaultMKL)MGE_CUDA_GENCODEsupplies the-gencodeoption fornvcc. (default not supply)MGE_DISABLE_FLOAT16if disable float16 support. (default OFF)MGE_ENABLE_EXCEPTIONSif enable exception support in C++. (default ON)MGE_ENABLE_LOGGINGif enable logging in MegEngine. (default AUTO)
More options can be found by:
cd build
cmake -LAH .. 2>/dev/null| grep -B 1 'MGE_' | less- MegEngine adopts Contributor Covenant to maintain our community. Please read the Code of Conduct to get more information.
- Every contributor of MegEngine must sign a Contributor License Agreement (CLA) to clarify the intellectual property license granted with the contributions. For more details, please refer Contributor License Agreement
- You can help MegEngine better in many ways:
- Write code.
- Improve documentation.
- Answer questions on MegEngine Forum, or Stack Overflow.
- Contribute new models in MegEngine Model Hub.
- Try a new idea on MegStudio.
- Report or investigate bugs and issues.
- Review Pull Requests.
- Star MegEngine repo.
- Reference MegEngine in your papers and articles.
- Recommend MegEngine to your friends.
- ...
We believe we can build an open and friendly community and power humanity with AI.
- Issue: github.com/MegEngine/MegEngine/issues
- Email: megengine-support@megvii.com
- Forum: discuss.megengine.org.cn
- QQ: 1029741705
- OPENI: openi.org.cn/MegEngine
MegEngine is Licensed under the Apache License, Version 2.0
Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
