Go to file
Hardy 42032356fb
Bang cncl (#163)
* MLU CNCL base

* add FindCNCL.cmake, not find -lcncl

* bangPrintFloat not find

* docker:make sucessful, test error

* delete net file and onnxtest.py

* init

* fix cncl

* format

* fix

* format

* fix cncl

* run dist gpt2 on mlu

* format

* fix import error on mlu docker

* run llama single card

* run distributed llama2

* add test for slice/reduce on mlu

* fix cncl related test

* fix format

* format

* delete comments

* change GPU to MLU

* MLU CNCL base

* add FindCNCL.cmake, not find -lcncl

* bangPrintFloat not find

* docker:make sucessful, test error

* delete net file and onnxtest.py

* init

* fix cncl

* format

* fix

* format

* fix cncl

* run dist gpt2 on mlu

* format

* fix import error on mlu docker

* run llama single card

* run distributed llama2

* add test for slice/reduce on mlu

* fix cncl related test

* fix format

* format

* delete comments

* change GPU to MLU

* modify launch script

* fix name

* fix format

* fix gather

* format python script

---------

Co-authored-by: xgqdut2016 <kenan_gewei@163.com>
Co-authored-by: Bolun <chamberlain0w0@gmail.com>
Co-authored-by: Bolun Zhang <48948016+Chamberlain0w0@users.noreply.github.com>
2024-01-03 13:28:03 +08:00
.github/workflows 不依赖 onnx models 的模型存储 (#196) 2023-12-11 10:44:06 +08:00
3rd-party test: enhance ci (#62) 2023-02-12 00:01:36 +08:00
cmake Bang cncl (#163) 2024-01-03 13:28:03 +08:00
docs Xpu (#82) 2023-10-16 10:57:08 +08:00
examples Bang cncl (#163) 2024-01-03 13:28:03 +08:00
include Bang cncl (#163) 2024-01-03 13:28:03 +08:00
proto Tensor serialization (#25) 2022-09-13 11:27:41 +08:00
pyinfinitensor add frontend resize kernel (#194) 2023-12-29 13:32:56 +08:00
python NNET supports TVM backend and kernels (#78) 2023-04-18 00:26:36 +08:00
scripts Xpu (#82) 2023-10-16 10:57:08 +08:00
src Bang cncl (#163) 2024-01-03 13:28:03 +08:00
test Bang cncl (#163) 2024-01-03 13:28:03 +08:00
.clang-format Add: graph, tensor, and operator 2022-07-31 21:44:03 +08:00
.cmake-format.json Add: graph, tensor, and operator 2022-07-31 21:44:03 +08:00
.gitignore impl distributed launch with NCCL (#106) 2023-09-05 09:47:35 +08:00
.gitmodules impl distributed launch with NCCL (#106) 2023-09-05 09:47:35 +08:00
CHANGELOG.md Update docs (#92) 2023-07-10 02:31:45 +08:00
CMakeLists.txt Bang cncl (#163) 2024-01-03 13:28:03 +08:00
LICENSE Initial commit 2022-07-27 22:40:23 +08:00
Makefile Bang cncl (#163) 2024-01-03 13:28:03 +08:00
README.md fix: 修正 README.md (#93) 2023-07-11 10:03:38 +08:00
README_CN.md Update docs (#92) 2023-07-10 02:31:45 +08:00
env.sh Xpu (#82) 2023-10-16 10:57:08 +08:00

README.md

InfiniTensor

中文项目简介 | Documentation | 中文文档

Build issue license

InfiniTensor is a high-performance inference engine tailored for GPUs and AI accelerators. Its design focuses on effective deployment and swift academic validation.

Get started

Make Commands

  • make/make build: Builds the project;
  • make install-python: Builds the project then install the python frontend;
  • make test-cpp: Builds the project then run cpp unit tests;
  • make test-onnx: Run python unit tests;

  • Sets env: TEST=OFF to accelerate compiling.
  • Sets env: CUDA=ON to enable cuda.
  • Sets env: BANG=ON to enable bang.

CMake Options

There are several configurable CMake options, see the CMakeLists.txt file.

  • If USE_BACKTRACE is ON, libdw-dev have to be installed. See the README of backward-cpp for details.
  • If USE_PROTOBUF is ON, protobuf have to be installed. See the README of protobuf for details.
  • If USE_CUDA is ON, cuda have to be installed.

Roadmap

  • EinNet is going to be merged into the main branch.
  • Integration of PET, a tensor program optimizer supporting partially equivalent transformations.
  • Supported hardware
    • ✔ NVIDIA GPU
    • ✔ Cambricon MLU
    • Ascend NPU
    • Kunlunxin XPU

Contributor Guide

InfiniTensor development is based on the pull request on Github. Before requesting for merging, a PR should satisfy the following requirements

  1. Pass all tests.
    1. Now CI on Github will test everything that can be tested in the ci environment, including code format. So, script test/script/clang_format_inplace.sh is for formatting all code.
    2. Contributors should run ctest manually and copy its output to the PR. Use fenced code blocks (triple backquotes, i.e., ```) to avoid referencing in Github. Otherwise, # in the output is interpreted as a Github reference. Do not directly paste the ctest output in commit messages either for the same reason.
  2. Receive at least one approval from reviewers.
  3. PR title should be concise since it is going to be the commit message in the main branch after merging and squashing.

Reference

Please cite EinNet or PET in your publications if it helps your research:

@article{zheng2023einnet,
  title={EINNET: Optimizing Tensor Programs with Derivation-Based Transformations},
  author={Zheng, Liyan and Wang, Haojie and Zhai, Jidong and Hu, Muyan and Ma, Zixuan and Wang, Tuowei and Huang, Shuhong and Miao, Xupeng and Tang, Shizhi and Huang, Kezhao and Jia, Zhihao},
  booktitle={17th USENIX Symposium on Operating Systems Design and Implementation (OSDI 23)},
  pages={739--755},
  year={2023}
}

@inproceedings{wang2021pet,
  title={PET: Optimizing tensor programs with partially equivalent transformations and automated corrections},
  author={Wang, Haojie and Zhai, Jidong and Gao, Mingyu and Ma, Zixuan and Tang, Shizhi and Zheng, Liyan and Li, Yuanzhi and Rong, Kaiyuan and Chen, Yuanyong and Jia, Zhihao},
  booktitle={15th USENIX Symposium on Operating Systems Design and Implementation (OSDI 21)},
  pages={37--54},
  year={2021}
}