Environment Setup ===================== This chapter describes the development environment configuration. The code is compiled and run in docker. .. _code_load: Code Download ------------------- GitHub link: https://github.com/sophgo/tpu-mlir After cloning this code, it needs to be compiled in docker. For specific steps, please refer to the following. .. _env_setup: Docker Configuration ------------------------ TPU-MLIR is developed in the Docker environment, and it can be compiled and run after Docker is configured. Download the required image from DockerHub https://hub.docker.com/r/sophgo/tpuc_dev : .. code-block:: shell $ docker pull sophgo/tpuc_dev:v3.4 If the pulling fails, you can download the required image file from the official website development materials https://developer.sophgo.com/site/index/material/86/all.html, or use the following command to download and load the image: .. code-block:: shell :linenos: $ wget https://sophon-assets.sophon.cn/sophon-prod-s3/drive/25/04/15/16/tpuc_dev_v3.4.tar.gz $ docker load -i tpuc_dev_v3.4.tar.gz If you are using docker for the first time, you can execute the following commands to install and configure it (only for the first time): .. _docker configuration: .. code-block:: shell :linenos: $ sudo apt install docker.io $ sudo systemctl start docker $ sudo systemctl enable docker $ sudo groupadd docker $ sudo usermod -aG docker $USER $ newgrp docker Make sure the installation package is in the current directory, and then create a container in the current directory as follows: .. code-block:: shell $ docker run --privileged --name myname -v $PWD:/workspace -it sophgo/tpuc_dev:v3.4 # "myname" is just an example, you can use any name you want # use --privileged to get root permission, if you don't need root permission, please remove this parameter Note that the path of the TPU-MLIR project in docker should be /workspace/tpu-mlir .. _model_zoo: ModelZoo (Optional) ------------------------ TPU-MLIR comes with the yolov5s model. If you want to run other models, you need to download them from ModelZoo. The path is as follows: https://github.com/sophgo/model-zoo After downloading, put it in the same directory as tpu-mlir. The path in docker should be /workspace/model-zoo .. _compiler : Compilation ---------------- In the docker container, the code is compiled as follows: .. code-block:: shell $ cd tpu-mlir $ source ./envsetup.sh $ ./build.sh Regression validation: .. code-block:: shell # This project contains the yolov5s.onnx model, which can be used directly for validation $ pushd regression $ python run_model.py yolov5s $ popd You can validate more networks with model-zoo, but the whole regression takes a long time: .. code-block:: shell # The running time is very long, so it is not necessary $ pushd regression $ ./run_all.sh $ popd Code Development -------------------- To facilitate code readability and development, it is recommended to use VSCode as the editor. In VSCode, install the following extensions: - C/C++ Intellisense : Provides intelligent suggestions, code navigation, and formatting for C++ code. - GitLens : Assists with Git version control and code review. - Python : Provides intelligent suggestions and code navigation for Python. - yapf : Formats Python code. - shell-format : Formats shell scripts. - Remote-SSH : Enables remote connections to code on a server (essential when code is not local). After writing your code, right-click and select “Format Document” to ensure a consistent code style. Since TPU-MLIR uses llvm-project and relies heavily on its headers and libraries, it is recommended to install llvm-project for improved code navigation. Follow these steps: 1. At the same level as the TPU-MLIR repository, create a `third-party` directory and clone llvm-project into it: .. code-block:: shell $ mkdir third-party $ cd third-party $ git clone git@github.com:llvm/llvm-project.git 2. Inside the TPU-MLIR Docker environment, build llvm-project (you may be prompted to install missing components during the build—follow the prompts to install them): .. code-block:: shell $ cd llvm-project $ mkdir build && cd build # If prompted for missing components (e.g., nanobind), install them: # pip3 install nanobind $ cmake -G Ninja ../llvm \ -DLLVM_ENABLE_PROJECTS="mlir" \ -DLLVM_INSTALL_UTILS=ON \ -DLLVM_TARGETS_TO_BUILD="" \ -DLLVM_ENABLE_ASSERTIONS=ON \ -DMLIR_INCLUDE_TESTS=OFF \ -DLLVM_INSTALL_GTEST=ON \ -DMLIR_ENABLE_BINDINGS_PYTHON=ON \ -DCMAKE_BUILD_TYPE=DEBUG \ -DCMAKE_INSTALL_PREFIX=../install \ -DCMAKE_C_COMPILER=clang \ -DCMAKE_CXX_COMPILER=clang++ \ -DLLVM_ENABLE_LLD=ON $ cmake --build . --target install After installation, you can link code navigation to the llvm-project sources.