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://github.com/AXERA-TECH/pulsar2-docs-en.gitThe directory tree is as follows:
.
├── build
│ ├── doctrees
│ └── html
├── LICENSE
├── Makefile
├── README.md
├── requirements.txt
└── source
├── appendix
├── conf.py
├── doc_update_info
├── index.rst
├── media
├── other_tools
├── pulsar2
├── tool_classification
├── user_guides_advanced
├── user_guides_config
└── user_guides_quickInstall Dependencies
pip install -r requirements.txtExecute the following command in the project root directory
$ make clean
$ make htmlAfter 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 8005Then connect to the server via ssh,
ssh -L 8005:localhost:8005 username@serverThen 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/