Next-generation AI toolchain Pulsar2 User manual Public maintenance project
- Provide a unified internal display address for AI tool chain documents
- Reduce the maintenance cost of AI tool chain developers
- Reduce the learning cost of AI tool chain users
# 待补充 git clone https://git-ext.axera-tech.com/npu/pulsar2-docs.git
The directory tree is as follows:
.
├── LICENSE
├── Makefile
├── README.md
├── build
│ ├── doctrees
│ └── html
├── requirements.txt
└── source # Document Main
├── appendix
├── conf.py
├── doc_update_info
├── examples # Some examples are saved in .zip format. Due to the limitation of git pages, the online documentation does not support click-to-download operation
├── faq
├── index.rst
├── media
├── pulsar2
├── user_guides_advanced
├── user_guides_config
├── user_guides_quick
└── user_guides_runtime
Install Dependencies
pip install -r requirements.txt
Execute the following command in the project root directory
$ make clean
$ make html
After the compilation is complete, use the browser to view build/html/index.html
. If you develop on a server, you can access the compiled document through ssh
port forwarding, as follows:
First, you can use python
to start an http
service in the compiled build/html/
folder,
$ cd build/html/
$ python -m http.server 8005 # 端口可以自定义
Then connect to the server via ssh
,
ssh -L 8005:localhost:8005 username@server
Then access the local browser: localhost:8005/index.html
- This project is based on Sphinx. For more information about Sphinx, please visit https://www.sphinx-doc.org/en/master/