Coder Social home page Coder Social logo

infinitensor / refactorgraph Goto Github PK

View Code? Open in Web Editor NEW
46.0 46.0 1.0 2.03 MB

分层解耦的深度学习推理引擎

License: MIT License

CMake 1.93% Makefile 0.06% C++ 89.41% Python 1.19% C 0.17% Cuda 6.25% Shell 0.06% Rust 0.93%
ai-compiler dataflow-graph inference-engine

refactorgraph's Introduction

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

  • RefactorGraph is a newly designed AI framework that is set to replace the current main branch.
  • 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
    • ✔ Kunlunxin XPU
    • ⬜ Ascend NPU

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}
}

refactorgraph's People

Contributors

bitzyz avatar chamberlain0w0 avatar kilinchange avatar panzezhong1725 avatar ydrmaster avatar zhangyue207 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

kuangjux

refactorgraph's Issues

Hardswish

  • 前端算子测例
  • 前端算子
  • 计算图算子
  • kernel 测例
  • kernel cpu
  • kernel cuda
  • 模型端到端测试

Sqrt kernel

  • 单元测试测例
  • cpu kernel
  • cuda kernel

Max&&Min

  • 前端算子测例
  • 前端算子
  • 计算图算子
  • kernel 测例
  • kernel cpu
  • kernel cuda
  • 模型端到端测试

Not

  • 前端算子测例
  • 前端算子
  • 计算图算子
  • kernel 测例
  • kernel cpu
  • kernel cuda
  • 模型端到端测试

Mod

  • 前端算子测例
  • 前端算子
  • 计算图算子
  • kernel 测例
  • kernel cpu
  • kernel cuda
  • 模型端到端测试

Exp

  • 前端算子测例
  • 前端算子
  • 计算图算子
  • kernel 测例
  • kernel cpu
  • kernel cuda
  • 模型端到端测试

RMS Normalization

定义

  • 前端算子测例
  • 前端算子
  • 计算图算子
  • kernel 测例
  • kernel cpu
  • kernel cuda
  • 模型端到端测试

Attention

定义

  • 前端算子测例
  • 前端算子
  • 计算图算子
  • kernel 测例
  • kernel cpu
  • kernel cuda
  • 模型端到端测试

Split kernel

  • 单元测试测例
  • 抽象 Split info 以压缩要传递给 kernel 的维度信息
  • cpu kernel
  • cuda kernel
    • 设计一种方案向 kernel 传递这样的信息:编译器编译时大小不确定/模型编译时值不确定/运行时传值

      可能的方案是直接改造 cudnn 使用的 workspace,因为如果有内存池的情况下分配显存会很快,那就没必要一直保留一个巨大的 workspace,临时需要的变长小块也可以随时分配

Equal

  • 前端算子测例
  • 前端算子
  • 计算图算子
  • kernel 测例
  • kernel cpu
  • kernel cuda
  • 模型端到端测试

完成前端以支持推理

  • load from onnx
  • frontend lower to computation
  • computation lower to kernel
  • kernel lower to stream
  • run stream
  • set input/get output
  • sample script

Softmax Kernel

  • [√] cpu kernel
  • [√] cuda kernel
  • [√] cudnn kernel
  • [√] 单元测试测例

Pad

  • 前端算子测例
  • 前端算子
  • 计算图算子
  • kernel 测例
  • kernel cpu
  • kernel cuda
  • 模型端到端测试

Erf

  • 前端算子测例
  • 前端算子
  • 计算图算子
  • kernel 测例
  • kernel cpu
  • kernel cuda
  • 模型端到端测试

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.